我很难为我的学校项目弄清楚这部分。所以寻求一点澄清。通常,用户必须输入一个数字(列)来插入一个游戏块。但是,如果用户输入“q”,程序将关闭。
我们被指出使用“parseInt”的方向,但是我正在寻找一些关于它是如何工作的澄清?
while(response.equalsIgnoreCase("q"));
{
System.out.println("Do you want to play again?");
response = scan.next();
}
System.out.println("Do you want to play again?");
response = scan.next(); // this revisits the while loop that
// prompted the player to play.