変数を作成し、while ループでコードをラップすると、繰り返されません。これは私が試したコードのサンプルです。
String repeat = "y";
Scanner keyboard = new Scanner(System.in);
while (repeat == "y"){
String word1 = "this";
String word2 = "that";
String word3 = word1 + word2;
System.out.println(word3);
for(int x = 10; x<20; x = x+1){
word3 = word1 + word3;
System.out.println(word3);
}
repeat = keyboard.nextLine();
}
スクリプトの最後の入力が何であっても、ただ終了します。何か助けはありますか?