返回列表 發帖
  1. import java.io.Console;
  2. public class Ch04
  3. {
  4.     public static void main(String args[])
  5.     {
  6.         int a;
  7.         Console c=System.console();
  8.         a=Integer.parseInt(c.readLine("請輸入年紀: "));
  9.         if(a>=18)
  10.             System.out.println("恭喜你!可以考駕照了");
  11.         else
  12.             System.out.println("未滿18,再等一等喔!");
  13.     }
  14. }
複製代碼

TOP

返回列表