Assignment 34, How Old Are You?

Code

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

  import java.util.Scanner;

  public class HowOld
  {
    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't drive");
        }
        
        
        if(age < 18)
        {
            System.out.println("You can't vote");
        }
        
        
        if(age < 25)
        {
            System.out.println("You can't rent a car");
        }
        
        
        if(age >= 25)
        {
            System.out.println("You can do anything legal");
        }
    }
  }
            
        
        
        
        
    

Picture of the output

Assignment 34