Assignment 37, How Old Are You, Specifically?

Code

   ///Name: Stella Koliavas
   ///Period: 5
   ///Program Name: How Old 2
   ///File Name: HowOld2.java
   ///Date Finshed: 10/27/15

   import java.util.Scanner;

   public class HowOld2
   {
    public static void main (String [] args)
    {
    
      Scanner siri = new Scanner(System.in);
        
        int age;
        
        System.out.print("How old are you? ");
        age = siri.nextInt();
        
        if ( age > 16)
        {
            System.out.println("You can drive.");
        }
        else if ( age >= 16)
        {
            System.out.println("You can drive but not vote.");
        }
        else if (age >= 18)
        {
            System.out.println("You can vote and drive but not rent a car.");
        }
        else if (25 >= age)
        {
            System.out.println("You can do everything legal.");
        }
     }
   }                
        
        
        
        
    

Picture of the output

Assignment 37