Computer Science, asked by aqibalam110, 1 day ago

Write a program in Java to check and display whether the entered number is an Even number or Odd number.​

Answers

Answered by dhanshrivikhe
1

Answer:

import java.util.Scanner;

public class EvenOdd {

public static void main(String args[]) {

Scanner reader = new Scanner(System.in);

System.out.print("Enter a number: ");

int num = reader.nextInt();

if(num % 2 == 0)

System.out.println(num + " is even");

else

System.out.println(num + " is odd");

}

}

Similar questions