Assignment #37 How Old Are You Specifically

Code

    
    /// Name: Lacey Reese 
    /// Period: 5
    /// Program Name: HowOldAreYouSpecifically
    /// File Name: HowOldAreYouSpecifically.java
    /// Date Finished 10/23/2015
    
import java.util.Scanner;

public class HowOldAreYouSpecifically
{
    public static void main( String[] args )
    {
        Scanner Lacey= new Scanner(System.in);
        
        int age;
        String name; 
        
        System.out.print( "Hey, what's your name? (Sorry, I keep forgetting.) " );
        name = Lacey.next();
            
        System.out.println ( " What is your age " + name + " ? " );
        age=Lacey.nextInt();
           
         if ( age < 16 )
		    {
		    System.out.println( "You can't drive " + name + "." );
	    	}
	    	
        else if ( age <=17 )
            {
            System.out.println( " You can drive but not vote " + name + "." );
            }
            
        else if ( 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