大家好,我真的很接近完成這一點,但我有我的for循環的問題。我需要我的程序有一個用戶輸入一個「W」或「H」,讓他們進入一個新的體重或身高。當他們做我的循環似乎由於某種原因停止。我do-while循環不循環
package Assignments;
import java.util.*;
public class assignment3 {
public static void main(String[] args) {
//Scanner
Scanner stdIn = new Scanner(System.in);
//Variables
final double METERS_TO_CM = 100; // The constant to convert meters to centimeters
final double BSA_CONSTANT = 3600; // The constant to divide by for bsa
double bmi; // Body Mass Index
double weight; // Weight in kilograms
double height; // Height in meters
String classification; // Classifies the user into BMI categories
double bsa; // Body surface area
System.out.print("Welcome to the BMI and BSA Calculator to begin enter weight in kilograms.");
weight = stdIn.nextDouble();
System.out.print("Enter height in meters: ");
height = stdIn.nextDouble();
bmi = weight/(height*height);
bsa = Math.sqrt(((height*METERS_TO_CM)*weight)/BSA_CONSTANT);
if (bmi < 18.5)
{
classification = "Underweight";
}
else if (bmi < 25)
{
classification = "Normal";
}
else if (bmi < 30)
{
classification = "Overweight";
}
else
{
classification = "Obese";
}
System.out.println("Choose Options below to set height and weight");
System.out.println("Your classification is: " + classification);
System.out.println("(H)eight: " + height + " meters");
System.out.println("(W)eight: " + weight + " kilograms");
System.out.printf("BMI: %.1f\n", bmi);
System.out.printf("BSA: %.2f\n", bsa);
System.out.println("(Q)uit");
do {
String response = stdIn.next();
if (response.charAt(0)== 'w')
{
System.out.println("Enter new weight: ");
weight = stdIn.nextDouble();
System.out.println("Choose Options below to set height and weight");
System.out.println("Your classification is: " + classification);
System.out.println("(H)eight: " + height + " meters");
System.out.println("(W)eight: " + weight + " kilograms");
System.out.printf("BMI: %.1f\n", bmi);
System.out.printf("BSA: %.2f\n", bsa);
System.out.println("(Q)uit");
}
else if (response.charAt(0) == 'h')
{
System.out.println("Enter new height: ");
height = stdIn.nextDouble();
System.out.println("Choose Options below to set height and weight");
System.out.println("Your classification is: " + classification);
System.out.println("(H)eight: " + height + " meters");
System.out.println("(W)eight: " + weight + " kilograms");
System.out.printf("BMI: %.1f\n", bmi);
System.out.printf("BSA: %.2f\n", bsa);
System.out.println("(Q)uit");
}
else if (response.charAt(0)!= 'w')
{
System.out.println("That is not a valid choice try again");
response = stdIn.next();
}
else if (response.charAt(0)!= 'h')
{
System.out.println("that is not a valid choise try again");
response = stdIn.next();
}
} while (stdIn.next().compareToIgnoreCase("q")!=0);
}
}
我的意思是做while while循環對不起 – Brad 2011-02-27 03:24:22
你有沒有想過可能使用Switch Case而不是使用Else IF,這意味着你可以使用While循環來繼續循環,直到你設置一個布爾值,當Case命中'Q 」。只是一個想法。 – 2011-02-27 03:30:35