Assignemnt #37 and Specifically How Old Are You

Code

    ///Name: Daniel Tiffany-Appleton
    ///Period:
    ///Program Name: Specifically How Old Are You
    ///File Name: SpecificallyHowOldAreYou
    ///Date Finished: 10/6/15
    
    import java.util.Scanner;
    
    public class SpecificallyHowOldAreYou
    {
        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( "Ok, " + name + " how old are you? " );
            age = keyboard.nextInt();
    
            if ( age < 16 )
            {
                System.out.println( "You can't drive, " + name );
            }
            else if ( age < 18 )
            {
                System.out.println( "You can drive but not vote, " + name );
            }
            else if ( age < 25 )
            {
                System.out.println( "You can vote but not rent a car, " + name );
            }
            else 
            {
                System.out.println( "You can do pretty much anything, " + name );
            }
            
        }
    }

    

Picture of the output

Assignment 37