Assignemnt #22: Your Info
Code
/// Name: Sean Harrison
/// Period: 7
/// Program name: Your Info
/// File Name: YourInfo.java
/// Date Finished: 9/28/2015
import java.util.Scanner;
public class YourInfo
{
public static void main( String[] args )
{
String name;
int age;
double income;
Scanner keyboard = new Scanner(System.in);
System.out.println( "Hello. What is your name?" );
name = keyboard.next();
System.out.println();
System.out.println( "Hi, " + name + "! How old are you?" );
age =keyboard.nextInt();
System.out.println();
System.out.println( "So you're " + age + ", eh? that's not old at all!" );
System.out.println( "How much do you make, " + name + "? " );
income = keyboard.nextDouble();
System.out.println();
System.out.println( income + "! I hope that's per hour and not per year! LMAO!" );
}
}
Picture of the output