Showing posts with label check odd or even number. Show all posts
Showing posts with label check odd or even number. Show all posts

Thursday, 13 June 2013

program in java to check given number odd or even ...........

import java.io.*;
class simple_check_odd_or_even
{
    public static void main(String args[])
    {
        try
        {
            int no;
            DataInputStream cin=new DataInputStream(System.in);
            System.out.println("Enter nuber to check it possitive or negative");
            no=Integer.parseInt(cin.readLine());
            if(no%2==0)
            {
                System.out.println(no+" is even number");
            }
            else
            {
                System.out.println(no+" is odd number");
            }
        }
        catch(Exception e)
        {
            System.out.println("Wrong data");
        }
    }
}