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

TOP

返回列表