Java - If else Statement

  1. import java.io.*;    
  2.     
  3. class ssvif    
  4.  {    
  5.    public static void main(String arg[]) throws IOException    
  6.     {    
  7.       System.out.print("Enter your age in completed years: ");    
  8.           
  9.       DataInputStream dr = new DataInputStream(System.in);    
  10.           
  11.       String t;    
  12.       
  13.       t = dr.readLine();    
  14.      
  15.       int age = Integer.parseInt(t);    
  16.     
  17.       if(age >= 18)    
  18.          System.out.println("\nyou are eligible to cast your vote");    
  19.       else    
  20.          System.out.println("\nyou have to wait for " + (18-age) + " years");    
  21.    }    
  22.  }