java中对输入的字符串进行判断的方法是什么?

2024-11-18 21:35:59
推荐回答(1个)
回答1:

String str=null;
while(true){
System.out.println("请输入要判断的字符串:");
str=scanner.nextLine();
if("quit".equals(str)){
break;
}
hw();
}