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

TOP

返回列表