本帖最後由 tonyh 於 2014-6-7 13:02 編輯
在螢幕上顯示指定範圍內的連續數字, 讓使用者自行輸入初始值與終止值,
譬如當使用者分別輸入3與6時, 執行結果為 3 4 5 6
若輸入11與17時, 執行結果則為 11 12 13 14 15 16 17
- import java.io.Console; //引入類別庫java.io裡的Console類別
- public class ch18
- {
- public static void main(String args[])
- {
- int x, y;
- Console c=System.console(); //在Console類別下建立一名為c的實體物件
- System.out.print("初始值: ");
- x=Integer.parseInt(c.readLine()); //利用Integer類別下的parseInt()函式將抓到的字串轉換為整數
- System.out.print("終止值: ");
- y=Integer.parseInt(c.readLine());
- for(int i=x; i<=y; i++)
- System.out.print(i+" ");
- System.out.println();
- }
- }
複製代碼 |