作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我不知道为什么这些行不会在 while 循环中打印。我也无法退出请帮忙。程序运行,但 while 循环内不会打印任何内容。
public class RomanNumeralHelper {
/**
* (Insert a brief description that describes the purpose of this method)
*
* @param args
*/
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
String myRoman;
String upperRoman;
System.out.print("Enter a roman numeral [Q | q to quit]: ");
myRoman = in.next();
upperRoman = myRoman.toUpperCase();
while (upperRoman != "Q") {
if (upperRoman == "I") {
System.out.println(">> 1");
} else if (upperRoman == "II") {
System.out.println(">> 2");
} else if (upperRoman == "III") {
System.out.println(">> 3");
} else if (upperRoman == "IV") {
System.out.println(">> 4");
} else if (upperRoman == "V") {
System.out.println(">> 5");
}
System.out.print("Enter a roman numeral [Q | q to quit]: ");
myRoman = in.next();
upperRoman = myRoman.toUpperCase();
}
System.out.println("Good Bye!");
// (5) Closes the in object to avoid a resource leak.
in.close();
}
}
最佳答案
使用 equals()
比较字符串,而不是使用 ==
关于java - while 循环内不会打印行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21541206/
我是一名优秀的程序员,十分优秀!