作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在顶部有一个最终的字符串数组,标记为笑话。我希望程序询问用户是否想听一个笑话,告诉用户这个笑话,然后询问他们是否想听另一个笑话。截至目前,程序将询问用户是否想听一个笑话,告诉他们这个笑话,询问他们是否想听另一个笑话,告诉他们第二个笑话,然后停止。我希望程序无限期地执行此操作,而不是只执行两次。任何我能得到的帮助或建议将不胜感激,因为我仍然是 Java 的初学者。
Random generator = new Random();
input = new Scanner(System.in);
System.out.println("Want to hear a joke?");
String response = "yes";
while (response.equalsIgnoreCase("yes")) {
response = input.nextLine();
int yourJoke = generator.nextInt(jokes.length);
System.out.println(jokes[yourJoke]);
System.out.println("Pretty funny! Want to hear another?");
response = input.nextLine();
}
}
}
最佳答案
input.nextLine()
一次。伪代码的一个解决方案:
initialize Scanner
initialize Random
hearAnother = false
prompt: want to hear a joke?
get input
hearAnother = input ignore case is "yes"
if hearAnother
tell your joke
do
prompt: want to hear another joke?
get input
hearAnother = input ignore case is "yes"
if hear another
tell random joke
end if
while hearAnother is true
end if
关于java - 我在这段代码中做错了什么?它应该无限期地运行,但只循环两次,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23984391/
我是一名优秀的程序员,十分优秀!