【发布时间】:2017-03-16 10:45:29
【问题描述】:
为抛硬币程序编写嵌套的 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!");
}
【问题讨论】:
-
在哪一行抛出错误?
-
这是与 replayResponse.charAt(0);感谢 BlackhatSamurai,我现在关闭了扫描仪,但我似乎遇到了输入不匹配异常
标签: java loops indexing nested out