Assignemnt #22 and Name Age And Salary

Code

    ///Name: Daniel Tiffany-Appleton
    ///Period: 7
    ///Program Name: Name Age And Salary 
    ///File Name: NameAgeAndSalary
    ///Date Finished 9/22/15
    
    import java.util.Scanner;
    
    public class NameAgeAndSalary
    {
        public static void main( String[] args )
        {
            String name;
            int age;
            double salary;
            
            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 + "?" );
            salary = keyboard.nextDouble();
            
            System.out.println( salary + "! I hope that's per hour and not per year! LOL!" ); 
        }
    }
    

Picture of the output

Assignment 22