- import java.lang.*;
- import java.io.Console;
- public class ch18
- {
- public static void main(String srgs[])
- {
- 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.println(i);
- }
- }
- }
複製代碼 |