本帖最後由 tonyh 於 2012-8-25 17:33 編輯
在螢幕上顯示指定範圍內的連續數字, 讓使用者自行輸入初始值與終止值,
譬如當使用者分別輸入3與6時, 執行結果為 3 4 5 6
若輸入11與17時, 執行結果則為 11 12 13 14 15 16 17- import java.io.Console;
- public class ch18
- {
- public static void main(String args[])
- {
- Console console=System.console();
- int x, y;
- System.out.print("初始值: ");
- x=Integer.parseInt(console.readLine());
- System.out.print("終止值: ");
- y=Integer.parseInt(console.readLine());
- for(int i=x; i<=y; i++)
- {
- System.out.print(i+" ");
- }
- }
- }
複製代碼 |