我基本上想要以下while循环来检查输入是否为整数。它不能包含小数,因为它指向一个数组。如果输入的值是小数,它应该再次提示用户。问题是在 while 循环从此代码开始之前我得到两个提示。有任何想法吗?
System.out.print("Enter month (valid values are from 1 to 12): ");
Scanner monthScan = new Scanner(System.in);
int monthInput = monthScan.nextInt();
// If the month input is below 1 or greater than 12, prompt for another value
while(monthInput<1 || monthInput>12 || !monthScan.hasNextInt())
{
System.out.print("Invalid value! Enter month (valid values are from 1 to 12): ");
monthInput = new Scanner(System.in).nextInt();
}
谢谢
编辑:当前输出给出以下内容:
Enter month (valid values are from 1 to 12): 2
2
请注意,即使 2 是有效值,我也必须输入两次。