Assignment #24 and AgeInFiveYears
Code
/// Name: Jason Kim
/// Period: 7
/// Program Name: AgeInFiveYears
/// File Name: AgeInFiveYears.java
/// Date Finished:9/24/15
import java.util.Scanner;
public class AgeInFiveYears
{
public static void main(String[] args)
{
Scanner keyboard = new Scanner(System.in);
String name;
int age;
System.out.print("Hello. What is your name? ");
name = keyboard.next();
System.out.println();
System.out.print("Hi, "+ name + "! How old are you? ");
age = keyboard.nextInt();
System.out.println();
System.out.println("Did you know that in five years you will be " + (age+5) + " years old?");
System.out.println("And five years ago you were " + (age-5) + "! Imagine that!");
}
}
Picture of the output