返回列表 發帖
  1. import java.io.Console;
  2. public class Ch08
  3. {
  4.     public static void main(String args[])
  5.     {
  6.         Console c=System.console();
  7.         int age;
  8.         age=Integer.parseInt(c.readLine("Enter your age: "));
  9.         if(age>=18)
  10.         {
  11.             System.out.println("You can have your license test!");
  12.         }
  13.         else
  14.         {
  15.             System.out.println("You still need to wait...");
  16.         }
  17.     }
  18. }
複製代碼

TOP

返回列表