Assignment #22 Name, Age, and Salary

Code

    /// Name: John Huh
    /// Period: 6
    /// Program Name: Name, Age, and Salary
    /// File Name: NameAgeSalary.java
    /// Date Finished: 9/21/2015

        import java.util.Scanner;
    
        public class NameAgeSalary
        {
            public static void main( String[] args )
            {
                String name;
                int age;
                double income;
            
                Scanner keyboard = new Scanner(System.in);
            
                System.out.println( "Hello.  What is your name?" );
                name = keyboard.next();
            
                System.out.println( "Hi, " + name + "!  How old are you?" );
                age = keyboard.nextInt();
            
                System.out.println( "So you're " + age + ", eh?  That's not old at all!" );
                System.out.println( "How much do you make, " + name + "?" );
                income = keyboard.nextDouble();
            
                System.out.println( income + "!  I hope that's per hour and not per year! LOL!" );
            }
        }
            
    

Picture of the output

Assignment 1