Assignment 21: Even Moar Questions

Code

    /// Name: Ryan McAteer
    /// Period: 5
    /// Program Name: Even Moar Questions
    /// File Name: Assignment21.java
    /// Date Finished: 9/22/15

import java.util.Scanner;

class Assignment21 
{
      public static void main(String[] args) 
      {
            
            String name;
            int age;
            double weight, income;
            
            Scanner keyboard = new Scanner(System.in);
            
            System.out.print( "Hallo. Was ist deine name? " );
            name = keyboard.next();

            System.out.print( "Hi, " + name + "! Wie alt bist du? " );
            age = keyboard.nextInt();
 
            System.out.println( "Also du bist " + age + ", eh? Nicht so alt." );
            System.out.print( "How much do you weigh, " + name + "(in pounds?) " );
            weight = keyboard.nextDouble();
    
            System.out.print( weight + "! Better keep that quiet. 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 + "." );
     }
}
    

Picture of the output

Assignment 21