Computer Science, asked by mosisk700, 9 months ago

write java program to check a no. is odd or even​

Answers

Answered by rmandula20
0

hloo

Answer:

please mark me as brainliest

Attachments:
Answered by queensp73
1

Answer:

import java.util.Scanner;

class CheckEvenOdd

{

 public static void main(String args[])

 {

   int num;

   System.out.println("Enter an Integer number:");

   //The input provided by user is stored in num

   Scanner input = new Scanner(System.in);

   num = input.nextInt();

   /* If number is divisible by 2 then it's an even number

    * else odd number*/

   if ( num % 2 == 0 )

       System.out.println("Entered number is even");

    else

       System.out.println("Entered number is odd");

 }

}

Explanation:

hope it helps u

:)

Similar questions