Assignment # 37 and How Old Are You Specifically
Code
/// Name: Tommy Oyuntseren
/// Period: 7
/// Program Name: HowOldAreYouSpecifically
/// File Name: HowOldAreYouSpecifically.java
/// Date: 10/27/2015
import java.util.Scanner;
public class HowOldAreYouSpecifically
{
public static void main (String[] args)
{
Scanner keyboard = new Scanner(System.in);
String name;
int age;
System.out.print( "Input your name " );
name = keyboard.next();
System.out.println();
System.out.print( "Hi, " + name + "! Input your age " );
age = keyboard.nextInt();
System.out.println();
if (age < 16) System.out.println(name+", you can't even drive!!!");
else if (age < 18) System.out.println(name+", you can't vote, but you can drive!!!");
else if (age < 25) System.out.println(name+", you can't rent a car, but you can vote!!!");
else System.out.println(name+", you can do anything that is not illegal!!!");
}
}
Picture of the output