Assignment #37 and How Old Are You, Specifically?

Code

    /// Name: Lauren Baird
    /// Period: 7
    /// Program Name: How Old Are You, Specifically?
    /// File Name: HowOldAreYouSpecifically.java
    /// Date Finished: 10/08/15
    
    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( "Hey, what's your name? (Sorry, I keep forgetting). " );
            name = keyboard.next();
            
            System.out.print( "Okay, " + name + ", how old are you? " );
            age = keyboard.nextInt();
            
            System.out.println();
            
            if ( age < 16 )
            {
                System.out.println( "You can't drive, " + name + "." );
            }
            
            else if ( age == 16 || age == 17 )
            {
                System.out.println( "You can drive but not vote, " + name + "." );
            }
            
            else if ( age >= 18 && age <= 24 )
            {
                System.out.println( "You can vote but not rent a car, " + name + "." );
            }
            
            else
            {
                System.out.println( "You can pretty much do anything you want, " + name + "." );
            }
        }
    }
    

Picture of the output

Assignment #37