program to find odd or even code example
Example 1: Java program to check even or odd number
import java.util.Scanner;
public class FindEvenOrOdd
{
public static void main(String[] args)
{
int a;
Scanner sc = new Scanner(System.in);
System.out.println("Please enter a number to check even or odd: ");
a = sc.nextInt();
if(a % 2 == 0)
{
System.out.println("Entered number is an even number.");
}
else
{
System.out.println("Entered number is an odd number.");
}
sc.close();
}
}
Example 2: check odd number
#include <stdio.h>
int main() {
int num;
printf("Enter an integer: ");
scanf("%d", &num);
if(num % 2 == 0)
printf("%d is even.", num);
else
printf("%d is odd.", num);
return 0;
}