WHAT'S NEW?
Showing posts with label even odd. Show all posts
Showing posts with label even odd. Show all posts
class EvenOdd 
{
public static void main(String[] args) 
{
int n=7;

if (n==0)

{
System.out.println("Number is 0");
}
else
{
if (n%2==0)
{
System.out.println("Number is Even");
}
else
{
System.out.println("Number is Odd");
}
}
}
}