为一个硬币翻转程序编写一个嵌套的while循环,我无法找出为什么我的代码不能编译。 最后的用户输入给我索引超出范围错误。有人能告诉我如何解决这个问题吗?
Scanner lit = new Scanner(System.in);
int numHeads = 0;
int numTails = 0;
int counter = 0;
boolean tryAgain = false;
String replayResponse = "";
char replay = '0';
System.out.println("Enter how many times a coin should be flipped");
int numFlipped = lit.nextInt();
do {
do{
if (Math.random() > 0.5){
System.out.println("H");
numHeads++; counter++;
}
else if (Math.random() < 0.5){
System.out.println("T");
numTails++; counter++;
}
} while(counter < numFlipped);
tryAgain = true;
} while (!tryAgain);
System.out.println("Number of heads is " + numHeads);
System.out.println("Number of tails is " + numTails);
System.out.println("");
System.out.println(" Would you like to play again? : Y/N ");
replayResponse = lit.nextLine();
replay = replayResponse.charAt(0);
if (replay == 'Y' || replay == 'y') {
tryAgain = false;
} else {
tryAgain = true;
}
lit.close();
System.out.println();
System.out.println("You exited out of the game.");
System.out.println("Goodbye!");
}
答案 0 :(得分:1)
扫描int时,您需要重置输入。目前,扫描仪正在寻找下一个int。所以像这样添加lit.nextLine();
:
lit.nextLine();
replayResponse = lit.nextLine();
replay = replayResponse.charAt(0);
if (replay == 'Y' || replay == 'y') {
tryAgain = false;
} else {
tryAgain = true;
}
你也可以这样做:
if(lit.hasNextInt())
{
numFlip = lit.nextInt();
}
解决类型不匹配异常。