ฉันใช้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()
จะถูกดำเนินการเพื่อให้ผลลัพธ์ของฉันเป็นดังนี้:
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()
จะถูกดำเนินการตามที่ฉันต้องการ