返回列表 發帖
  1. import java.io.Console;
  2. public class Ch06
  3. {
  4.     public static void main(String args[])
  5.     {
  6.          int x;
  7.          Console c=System.console();
  8.          x=Integer.parseInt(c.readLine("輸入你的年齡: "));

  9.         if(x>=18)
  10.         {
  11.         System.out.println("可以考駕照!");
  12.         }else
  13.         {
  14.         System.out.println("滾回你家!");
  15.         }
  16.     }
  17. }
複製代碼

TOP

返回列表