返回列表 發帖
回復 1# tonyh
  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.          System.out.println("都"+(x)+"歲了還沒考到駕照");
  11.      else
  12.          System.out.println("回家玩手機啦才"+(x)+"歲就想考駕照,你以為在開模擬器?");
  13.     }
  14. }
複製代碼

TOP

返回列表