System.out.print("Name : ");
String name = in.nextLine();
System.out.print("Age : ");
int age = in.nextInt();
System.out.print("City : ");
String city = in.nextLine();
輸出將是:用戶輸入的字符串和整數在Java中
名稱:測試
年齡:20
生成成功
當我進行調試,它贏得了」閱讀「城市」的用戶輸入。但是當我將「年齡」的數據類型更改爲字符串時,它會讀取。我怎樣才能使系統讀取城市用戶輸入的數據類型爲int?
@ athirahhazira94,你已經經歷關於nextLine()。 Anda kena baca tentang nextLine()。 – gjman2