我正在嘗試一個錯誤檢查,它確定數組中的所有元素是否都是整數,但我被困了很長時間。關於如何入門的任何想法都會有所幫助。如何檢查字符串數組中的每個元素是否是整數?
Scanner scan = new Scanner(System.in);
System.out.print("Please list at least one and up to 10 integers: ");
String integers = scan.nextLine();
String[] newArray = integers.split("");
的可能重複:http://stackoverflow.com/questions/5439529/determine-if-a-string-is-an-integer-in- java – Ashish
一個foreach,然後像東西像http://stackoverflow.com/questions/8391979/does-java-have-a-int-tryparse-that-doesnt-throw-an-exception-for-bad-data –
在什麼方式我會執行foreach? –