我在代码中使用 while 语句,用户在 while 语句内输入一个数字。要停止程序循环,用户必须输入“停止”一词。但是,一旦我输入一个数字,输出就会跳到另一行,而不打印我希望它打印的语句,并且我必须再次输入所需的输入以使程序开始循环。唯一不会发生此问题的情况是当用户首先输入“stop”时,代码就可以正常工作。
这是为了找到任意数量的用户输入数字的最大值、最小值和平均值。我尝试更改 else/if 语句的顺序以及所述 else/if 语句的参数,但似乎没有任何效果。
boolean stopped = false;
int numberAmount = 0;
int invalidAmount = 0;
double max = Integer.MIN_VALUE;
double min = Integer.MAX_VALUE;
double mean = 0;
while(stopped == false)
{
System.out.print("Enter a number (type "+"\""+"stop"+"\""+" to stop): ");
String originalInput = userInput.nextLine();
if(originalInput.equals("stop"))
{
stopped = true;
invalidAmount ++;
System.out.println(numberAmount+" numbers were entered with "+invalidAmount+" invalid inputs.");
}
else if(userInput.hasNextDouble())
{
double currentValue = Double.parseDouble(originalInput);
max = Math.max(max, currentValue);
min = Math.min(min, currentValue);
mean = currentValue;
numberAmount ++;
}
else if(originalInput.equals("stop") == false)
{
System.out.println("Not a number...");
invalidAmount ++;
}
}
System.out.println("The maximum is "+max+".");
System.out.println("The minimum is "+min+".");
System.out.println("The mean is "+(mean / numberAmount)+".");
userInput.close();
}
}
例如,我期望输入 7 后的输出为下一行的“输入数字(键入“stop”停止):”(因为程序循环不断提示输入数字),然后用户可以继续输入他们喜欢的数字。相反,实际输出是原始提示用户输入下的空行,用户必须再次输入所需的输入,程序才能开始循环。
至尊宝的传说
Qyouu
料青山看我应如是
相关分类