Assignemnt #37 and How Old Are You, Specifically?
Code
///Name: Dakota Donahue
///Period: 5
///Project Name: How Old Are You, Specifically?
///File Name: HowOldSpecifically
///Date: 8/6/2015
import java.util.Scanner;
public class HowOldSpecifically
{
public static void main( String[] args )
{
Scanner keyboard = new Scanner(System.in);
String name;
int age;
System.out.print( "Hey, what's your name? (Sorry, I keep forgetting.) " );
name = keyboard.next();
System.out.print( "Okay, " + name + ", how old are you? " );
age = keyboard.nextInt();
if ( age <= 16 )
{
System.out.println( "You can't drive, " + name + ". " );
}
else if ( age == 17 )
{
System.out.println( "You can drive but not vote, " + name + ". ");
}
else if ( age == 18 )
{
System.out.println( "You can vote but not rent a car, " + name + ". ");
}
else if ( age == 19 )
{
System.out.println( "You can vote but not rent a car, " + name + ". ");
}
else if ( age == 20 )
{
System.out.println( "You can vote but not rent a car, " + name + ". ");
}
else if ( age == 21 )
{
System.out.println( "You can vote but not rent a car, " + name + ". ");
}
else if ( age == 22 )
{
System.out.println( "You can vote but not rent a car, " + name + ". ");
}
else if ( age == 23 )
{
System.out.println( "You can vote but not rent a car, " + name + ". ");
}
else if ( age == 24 )
{
System.out.println( "You can vote but not rent a car, " + name + ". ");
}
if ( age >= 25 )
{
System.out.println( "You can do pretty much anything, " + name + ". " );
}
}
}