這是我的第一個Java項目之一,我試圖製作一個迷你計算器,現在我正在開發另外一個項目。調用掃描器用戶在java中輸入的次數
我想要做的事情就好像它會詢問用戶他們要添加多少個數字,然後輸入所有數字,然後java代碼必須獲得所有輸入的數字。
這裏是不工作至今的附加部分:
private static void Addition() { //I already added the Scanner plugin
System.out.println("How many numbers would you like to add?");
Scanner adds = new Scanner(System.in);
int addsput = adds.nextInt();
Scanner numa = new Scanner(System.in);
for(int addloop=1; addloop>addsput; addloop++) {
int numaput = adds.nextInt();
//somehow I want to get all the numbers
}
//Here I want to add all the numbers they typed
}
所以我希望你的想法。任何幫助都會很棒,因爲我一直在尋找大概一個小時才能解決問題。謝謝。
你是什麼意思,它「不工作」?它有什麼作用?你期望它做什麼?僅僅說「我希望你明白這一點」是不夠的。請提供更多詳情 – nhouser9
爲什麼你有2臺掃描儀? – Li357
好吧我會解釋它應該做什麼:P lol – MattGotJava