Assignemnt #21: Even Moar Questions

Code

    /// Name: Kelsey Lieberman
    /// Period 5
    /// Program Name: EvenMoarQuestions
    /// File Name: EvenMoarQuestions.java
    /// Date Finished: 9/11/2015
    
import java.util.Scanner;

public class EvenMoarQuestions
{
    public static void main(String[] args)
    {
        String name;
        int age;
        double weight, income;
        
        Scanner typeything = new Scanner(System.in);
        
        System.out.print("Hello, what is your name? ");
        name = typeything.next();
        
        System.out.print("Hi, " + name + "! How old are you? ");
        age = typeything.nextInt();
        
        System.out.println("So you're " + age + ", eh? Thats not old at all.");
        System.out.print("How much do you weigh, " + name + "? ");
        weight = typeything.nextDouble();
        
        System.out.print(weight + "! Better keep that quiet. Finally, what's your income, "+ name + "? ");
        income = typeything.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