public static void main(String[] args) {
// TODO Auto-generated method stub
//Scanner for AccountNumbers
Scanner AccountIn = new Scanner(System.in);
ArrayList<String> AccountNumber = new ArrayList<String>();
System.out.println("Create Account Number");
while(AccountIn.hasNextLine()>0 &&AccountIn.hasNextLine() < 9){
//EveryTime AccountNumber Is created store in Array
AccountNumber.add(AccountIn.nextLine());
money = reader.readDouble("Enter Starting Amount Of Money");
}
}
我想獲得用戶掃描儀'AccountIn'的輸入大於0小於9我該怎麼做?我應該創建一個輸入變量,然後在while循環中列出嗎?還是應該使用try和catch異常?JAVA - 如何設置用戶輸入的輸入範圍驗證
你想檢查'AccountIn'中的章程嗎? –
是的。 AccountIn是用戶輸入賬號的掃描儀。 – Ahmed
@Ahmed看看我的解決方案。 – user3437460