Check The Given Number is Odd or Even using Java


  1. // odd or even   
  2.   
  3. import java.io.*;  
  4.   
  5. class ssvoe  
  6.  {  
  7.    public static void main(String arg[]) throws IOException  
  8.    {  
  9.     String s1;  
  10.   
  11.     int n1;  
  12.   
  13.     DataInputStream dr = new DataInputStream(System.in);  
  14.      
  15.     System.out.print("\nEnter the Number : ");  
  16.   
  17.     s1 = dr.readLine();  
  18.   
  19.     n1 = Integer.parseInt(s1);  
  20.   
  21.     if(n1 % 2 == 1)  
  22.   
  23.        System.out.println("\nThe Number is  ODD");  
  24.   
  25.     else  
  26.   
  27.        System.out.println("\nThe Number is  EVEN");  
  28.    
  29.   }  
  30.  }  
  31.   
  32.