- import java.io.Console;
- public class Ch010
- {
- public static void main(String args[])
- {
- Console c=System.console();
- int age;
- System.out.println("Please enter your age truthfully: ");
- age=Integer.parseInt(c.readLine());
- if(age>=18)
- {
- System.out.println("You are old enough to get your liscense! Congratulations");
- }else
- {
- System.out.println("Oh! you are still not of age to legally get the liscense!");
- }
- }
- }
複製代碼 |