Assignment #22
Code
///Name: Jack Newsom
///Period 5
///Program Name: NameAgeSalary
///filename: NameAgeSalary.java
///Date completed: 9/15/15
import java.util.Scanner;
public class NameAgeSalary
{
public static void main( String[] args)
{
Scanner keyboard = new Scanner(System.in);
String name;
int age;
double income;
System.out.print("Hello, what is your name? ");
name = keyboard.next();
System.out.print("Hey, " + name + "! How old are you? ");
age = keyboard.nextInt();
System.out.print("So you're " + age + ", eh? Thats's not old at all!");
System.out.println("How much do you make, " + name + " ? ");
income = keyboard.nextDouble();
System.out.println(income + "! I hope that's per hour and not per year! LOL!");
}
}
Picture of the output