Assignemnt #34 and How Old Are You

Code

    ///Name: Daniel Tiffany-Appleton
    ///Period: 7
    ///Program Name: How Old Are You
    ///File Name: HowOldAreYou
    ///Dante Finished: 10/5/15
    
    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( "Hey, what's 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'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

Assignment 34