作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
代码在未接受第二个用户输入的情况下提前终止。
public static void main(String[] args)throws java.io.IOException {
// TODO Auto-generated method stub
char ch;
System.out.println("Press any key to throw a die and press Enter (or Q and Enter to quit)");
ch = (char) System.in.read();
if(ch == 'q'|| ch =='Q')
{
System.exit(0);
}
else
{
dieFace = (int)(Math.random() * max) +1;
System.out.println("You rolled a " + dieFace);
}
char pa;
System.out.println("Play Again? (Y or y) and Enter, any other key and Enter to Quit");
pa = (char) System.in.read();
if(pa == 'Y'|| pa =='y')
{
dieFace = (int)(Math.random() * max) +1;
System.out.println("You rolled a " + dieFace);
}
else
{
System.exit(0);
}
最佳答案
代码不接受第二次用户输入,因为第一次输入后,我们需要输入Enter
来结束第一次输入。这就是问题所在,Enter
也是一个输入(ASCII 代码为 10)。
我们需要尝试读取Enter
,以便我们可以等待新的输入。只需在第二次输入之前添加对 System.in
的更多读取即可。
System.out.println("Press any key to throw a die and press Enter (or Q and Enter to quit)");
ch = (char) System.in.read();
if(ch == 'q'|| ch =='Q')
{
System.exit(0);
}
else
{
dieFace = (int)(Math.random() * max) +1;
System.out.println("You rolled a " + dieFace);
}
char pa;
System.out.println("Play Again? (Y or y) and Enter, any other key and Enter to Quit");
int enterKey = System.in.read();//this is the enter key char
pa = (char) System.in.read();
if(pa == 'Y'|| pa =='y')
{
dieFace = (int)(Math.random() * max) +1;
System.out.println("You rolled a " + dieFace);
}
else
{
System.exit(0);
}
注意:int EnterKey = System.in.read();//这是回车键字符
,用于读取回车。
建议: java.util.Scanner
可能更适合您,请查看 Doc
关于java - 代码在没有到达第二个用户输入的情况下被终止,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56918910/
我有一个流 randStream,它每半秒发出一次随机值,还有一个 boolStream,它将值从 randStream 转换为 bool 值。 let randStream = Kefir.from
我是一名优秀的程序员,十分优秀!