Scanner
メソッドnextInt()
を使用して、nextLine()
入力を読み取ります。
次のようになります。
System.out.println("Enter numerical value");
int option;
option = input.nextInt(); // Read numerical value from input
System.out.println("Enter 1st string");
String string1 = input.nextLine(); // Read 1st string (this is skipped)
System.out.println("Enter 2nd string");
String string2 = input.nextLine(); // Read 2nd string (this appears right after reading numerical value)
問題は、数値を入力した後、最初の行input.nextLine()
がスキップinput.nextLine()
され、2番目の行が実行されるため、出力が次のようになることです。
Enter numerical value
3 // This is my input
Enter 1st string // The program is supposed to stop here and wait for my input, but is skipped
Enter 2nd string // ...and this line is executed and waits for my input
アプリケーションをテストしましたが、の使用に問題があるようinput.nextInt()
です。私はそれを削除する場合は、両方のstring1 = input.nextLine()
とstring2 = input.nextLine()
、私は彼らがなりたいように実行されています。