Assignment #21 Even Moard Questions

Code

      ///Name: Ian Grant
      ///Period:5
      ///Project Name: Even Moard Questions
      ///File Name:RudeQuestions.java
      ///10/13/15
      
      import java.util.Scanner;
      public class RudeQuestions {
          public static void main (String[] args)
          {
              String name;
              int age;
              double weight,income;
              Scanner keyboard = new Scanner(System.in);
              System.out.print("Hello what is your name? ");
              name = keyboard.next();
              System.out.print("Hi, "+name+"!  How old are you? ");
              age=keyboard.nextInt();
              System.out.print("So you're "+age+" old, thats not that old.");
              System.out.print("How much do you wiegh, "+name+"? ");
              weight=keyboard.nextDouble();
              System.out.print(weight+"! Better keep that queit. Finally what's your income, "+name+"? ");
              income=keyboard.nextDouble();
              System.out.println("Hopefully that is "+income+" per hour and not per year!");
              System.out.println("Well, thanks for answering my rude questions,"+name+".");
          }
      }
      

Output