Sto usando i Scanner
metodi nextInt()
e nextLine()
per leggere l'input.
Sembra così:
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)
Il problema è che dopo aver inserito il valore numerico, il primo input.nextLine()
viene ignorato e il secondo input.nextLine()
viene eseguito, in modo che il mio output sia simile al seguente:
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
Ho testato la mia applicazione e sembra che il problema risieda nell'uso input.nextInt()
. Se lo elimino, entrambi string1 = input.nextLine()
e string2 = input.nextLine()
vengono eseguiti come voglio che siano.