Assignemnt #21 Even More Questions

Code

    Name: Iaroslav Titov
    Period: 7
    Project Name: RudeQuestions
    File Name: RudeQuestions.java
    Date: 9/22/2015
    
import java.util.Scanner;
import java.util.InputMismatchException;
  
  public class RudeQuestions
  {
      public static void main( String[] args )
      {
          String name;
          int age;
          double weight, income;
 
         Scanner keyboard = new Scanner(System.in);
        
        try 
        {
            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.println( "So you're " + age + ", eh? That's not old at all." );
            System.out.print( "How much do you weigh, " + name + "? " );
            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 + "." );
        }
        catch (InputMismatchException e)
        {
            System.out.println( "WRONG INPUT!!!" );
        }
    }
 }
    

Picture of the output

Assignment 18