總結兩輪之間的值,這是我的任務。使用FOR循環,並在Java中
「寫程序LoopForNumberSum.java只顯示每秒數,從2日開始,到屏幕上和在括號上輪之間到目前爲止,循環範圍由單獨的變量定義,使用FOR-loop解決問題。「
這是代碼我迄今爲止:
public class LoopForNumberSum {
public static void main(String args[]) {
int min = 2;
int max = 10;
for(int i = min; i <= max; i+=2) {
int j = i+i;
System.out.println(i + "(" + j + "), ");
}
}
}
^這個代碼打印:
2(4),
4(8),
6(12 ),
8(16),
10(20),
但我需要在括號中的數字從2開始,其餘需要是6,10,14和18.像這樣:「2(2),4(6) ......」
提示:您需要在循環外部聲明的變量到目前爲止存儲 – antlersoft 2014-09-04 19:36:31
哦,是的,當然值! – user1589375 2014-09-04 19:45:28