Assignment 21, Even Moar Questions

Code

   ///Name: Stella Koliavas
   ///Period: 5
   ///Program Name: Even Moar Questions
   ///File Name: RudeQuestions.java
   ///Date Finshed: 9/29/15

   import java.util.Scanner;

    public class RudeQuestions
    {
      public static void main( String[] args)
      {
        String name;
        int age;
        double weight, income;

        Scanner siri = new Scanner(System.in);

        System.out.print( "Hello. What is your name? " );
        name = siri.next();

        System.out.print( "Hi, " + name + "! How old are you? " );
        age = siri.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 = siri.nextDouble();

        System.out.print( weight + "! Better keep that quiet. Finally, what's your income, " + name + "? " );
        income = siri.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