Assignemnt #21 and Even Moar Questions

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, realname;
         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();
         realname = "Baby";
         
 
         System.out.println( "So you're " + age + ", eh? Wowww your so young. "  + realname + "" );
         System.out.print( "How much do you weigh, " + name + "? " );
         weight = keyboard.nextDouble();
         
         realname = "Baby Fatso";
 
         System.out.print( weight + "! Dang dude lay off on the pizza's. Finally, How much do you make, " + name + "? or should I call you " + realname + "?" );
         income = keyboard.nextDouble();
 
         System.out.println( "Hopefully that is " + income + " per hour and not per year!, " +realname + "" );
         System.out.println( "Well, thanks for answering my rude questions, " + name + "." );
     }
 }
    

Picture of the output

Assignment 21