我很抱歉,如果這已經被問過,但我無法找到一個決定性的答案經過一些廣泛的搜索,所以我想我會問這裏。我是Java的初學者(通常是編碼),他的任務是編寫一個程序,它接受用戶輸入的3位數字,並添加這三位數字。如何使用Java將整數分割爲數組?
注意:我不能使用循環執行此任務,並且三位數字必須全部輸入一次。
String myInput;
myInput =
JOptionPane.showInputDialog(null,"Hello, and welcome to the ThreeDigit program. "
+ "\nPlease input a three digit number below. \nThreeDigit will add those three numbers and display their sum.");
int threedigitinput;
threedigitinput = Integer.parseInt(myInput);
爲什麼你想創建一個數組?爲什麼不把每個數字從輸入字符串中拉出來並添加呢?這聽起來像一個[XY問題](http://meta.stackexchange.com/questions/66377/what-is-the-xy-problem)給我。 – azurefrog 2014-10-11 21:49:29