返回列表 發帖
  1. import java.io.Console;
  2. public class Ch010
  3. {
  4.     public static void main(String args[])
  5.     {
  6.         Console c=System.console();
  7.         int age;
  8.         System.out.println("Please enter your age truthfully: ");
  9.         age=Integer.parseInt(c.readLine());
  10.         if(age>=18)
  11.         {
  12.             System.out.println("You are old enough to get your liscense! Congratulations");
  13.         }else
  14.         {
  15.             System.out.println("Oh! you are still not of age to legally get the liscense!");
  16.         }
  17.     }
  18. }
複製代碼

TOP

返回列表