此代码检查用户输入是否有效。如果它不是一个数字,它将继续循环,直到它收到一个数字。之后,它将检查该数字是否在界限内或小于界限。它将继续循环,直到收到入站号码。但我的问题是,当我打印选择时,它只显示插入的最后一个数字之后的前一个数字。为什么会这样?
public void askForDifficulty(){
System.out.println("Difficulty For This Question:\n1)Easy\n2)Medium\n3)Hard\nChoice: ");
int choice = 0;
boolean notValid = true;
boolean notInbound = true;
do{
while(!input.hasNextInt()){
System.out.println("Numbers Only!");
System.out.print("Try again: ");
input.nextLine();
}
notValid = false;
choice = input.nextInt();
}while(notValid);
do{
while(input.nextInt() > diff.length){
System.out.println("Out of bounds");
input.nextLine();
}
choice = input.nextInt();
notInbound = false;
}while(notInbound);
System.out.println(choice);
}