public class Solution {
public static void main(String[] args) throws IOException {
Scanner sc = new Scanner(System.in);
ArrayList arr = new ArrayList<>();
String s = sc.nextLine();
while (true){
arr.add(s);
if(s.equals("结束"))
break;
arr.add(s);
}
for(String a : arr) {
System.out.println(a);
}
//在此编写你的代码
}
}
这个循环为什么无法跳出?