Assignemnt #34 How Old Are You
Code
///Name: Morgan Kaplan
///Period: 5
///Project Name: How Old Are You
///File Name: HowOldAreYou.java
import java.util.Scanner;
public class HowOldAreYou
{
public static void main( String[] args )
{
Scanner keyboard = new Scanner(System.in);
int age;
String name;
System.out.print( "What is your name? " );
name = keyboard.next();
System.out.print( "Ok, " + name + ", how old are you? " );
age = keyboard.nextInt();
if ( age > 16 );
{
System.out.println( "You can drive" );
}
if ( age > 18);
{
System.out.println( "You can vote" );
}
if ( age < 25)
{
System.out.println( "You can't rent a car. " );
}
if ( age > 65 )
{
System.out.println( "You are useless to society." );
}
}
}
Picture of Output