Guest User

Untitled

a guest
Oct 16th, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.47 KB | None | 0 0
  1. public class Hello
  2.  
  3. {
  4.     public static void main (String a[])
  5.     {
  6.     Scanner input = new Scanner(System.in);
  7.  
  8.    
  9.     System.out.print("Hello, what's your name? ");
  10.     int name = input.nextInt();
  11.     System.out.print ("How old are you? ");
  12.     int age = input.nextInt();
  13.     if (age > 18)
  14.         System.out.println ("You're over 18. Enjoy your car!");
  15.     goodBye();
  16.     } // End of main meathod
  17.    
  18.     public static void goodBye ()
  19.     {
  20.         System.out.println ("Good Bye!");
  21.     }
  22. } // End of Hello Program
Add Comment
Please, Sign In to add comment