Assignemnt #34 and How Old Are You

Code

    /// Name: Brian Phillips
    /// Period: 5
    /// Program name: How Old Are You
    /// File Name: HowOld.java
    /// Date Finished: 10/22/2015
import java.util.Scanner;

public class HowOld
{
    public static void main( String[] args )
    {
        Scanner keyboard = new Scanner(System.in);
        
        int age;
        
        System.out.print( "How old are you? " );
        age = keyboard.nextInt();
        
            
        
        if ( age < 16 )
        {
            System.out.println( "You can't drive." );
        }
        
        if ( age < 18 )
        {
            System.out.println( "You can't vote." );
        }
        
        if ( age < 25 )
        {
            System.out.println( "You can't rent a car." );
        }
        
        if ( age > 25 )
        {
            System.out.println( "You can do anything that's legal." );
        }
    }
}
    

Picture of the output

HowOld.html