Q:

Java program to check a given number is EVEN or ODD using bit masking

belongs to collection: Java Basic Programs

0

Java program to check a given number is EVEN or ODD using bit masking

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program/Source Code:

The source code to check a given number is EVEN or ODD using bit masking is given below. The given program is compiled and executed successfully.

// Java program to check a given number is 
// EVEN or ODD using bit masking

import java.util.Scanner;

public class Main {
  public static void main(String[] args) {
    Scanner SC = new Scanner(System.in);

    int num = 0;

    System.out.printf("Enter Number: ");
    num = SC.nextInt();

    if ((num & 1) == 1)
      System.out.printf("Number is ODD");
    else
      System.out.printf("Number is EVEN");
  }
}

Output:

Enter Number: 7
Number is ODD

Explanation:

In the above program, we imported the "java.util.Scanner" package to read variable values from the user. And, created a public class Main. It contains a static method main().

 

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Java Basic Programs

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
Java program to check nth bit of 16-bit number is ... >>
<< Java program to check binary representation of the...