Assignemnt #37 and How Old Are You

Code


/// Name: David Shkolnikov
/// Period: 6
/// Program Name: How Old Are You Specifically
/// File Name: HowOldAreYouSpecifically.java
/// Date: 10/26/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( "Ok, " + 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 do pretty much anything " + name + "." );
        }
    }
}
   

    

Picture of the output

Assignment 37