“用户输入字符串并显示,直到‘bye’为止,请使用break语句实现。”
关键代码:
public static void main(String[] args) {
//扫描器
Scanner input = new Scanner(System.in);
//字符串
String str = "";
while(true)
{
System.out.println("请输入字符串:");
str = input.next();
System.out.println("您输入的字符串是:"+str);
if("bye".equals(str))
{
break;
}
}
System.out.println("输入结束");
}
以上代码可以发现,只要输入的字符串不是“bye”,程序就不会结束。如果需要将程序暂停到if判断的位置,查看equals()方法的结果,该怎么做呢? |