Assignemnt #22

Code

    /// Name:Mahima Choudhary
    /// Period: 6
    /// Program Name: NameAgeSalary
    /// File Name: NameAgeSalary.java
    /// Date Finished: 10/1/15
    
import java.util.Scanner;

public class NameAgeSalary
{
    public static void main( String[] args )
    {
        String name;
        int age, make;
        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();

        System.out.println( "So you're " + age + ", eh? That's not old at all." );
        System.out.print( "How much do you make, " + name + "? " );
        make = keyboard.nextInt();
        
        System.out.println( make + "! I hope thats per hour and not per year! LOL!" );

    }
}
    

Picture of the output

Assignment 19