返回列表 發帖
  1. import java.io.Console;
  2. public class Ch09
  3. {
  4.     public static void main(String args[])
  5.     {
  6.       Console c=System.console();
  7.       int age;
  8.       System.out.print("Enter your age: ");
  9.       age=Integer.parseInt(c.readLine());
  10.       if (age>=18)
  11.           System.out.println("You can test for your driver's liscence!");
  12.       else
  13.       System.out.println("You are under 18, wait a few years!");
  14.     }
  15. }
複製代碼

TOP

返回列表