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