返回列表 發帖
  1. import java.io.Console;
  2. public class Ch04
  3. {
  4.     public static void main(String args[])
  5.     {
  6.         int n;
  7.         Console c=System.console();

  8.         n=Integer.parseInt(c.readLine("輸入你的年齡: "));
  9.         
  10.         if(n>=18)
  11.             System.out.println("恭喜!可以考駕照了");
  12.         else
  13.             System.out.println("未滿18,再等等喔~");
  14.     }
  15. }
複製代碼

TOP

返回列表