Assignemnt #22 and Name, Age, and Salary

Code

///Name: Ben Borglin
///Period: 6
///Program Name: Rude Questions
///File Name: RudeQuestions.java
///Date Finished: 9/15/15

 import java.util.Scanner;
 
 public class RudeQuestions
 {
     public static void main( String[] args )
     {
     
      String name;
      double salary;
      int age;
         
        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 your'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