Write a Program to find whether the given number is odd or even?
This java program finds if a number is odd or even. If the number is divisible by 2 then it will be even, otherwise it is odd.
Source code of Program:
import java.util.Scanner;
class OddOrEven
{
public static void main(String args[])
{
int x;
System.out.println("Enter an integer to check if it is odd or even ");
Scanner in = new Scanner(System.in);
x = in.nextInt();
if ( x % 2 == 0 )
System.out.println("You entered an even number.");
else
System.out.println("You entered an odd number.");
}
}
Output of the Program: