Q:

Java program to check a given number is the power of 2 using bitwise operator

belongs to collection: Java Basic Programs

0

Java program to check a given number is the power of 2 using bitwise operator

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 the power of 2 using the bitwise operator is given below. The given program is compiled and executed successfully.

// Java program to check a given number is the 
// power of 2 using bitwise operator

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 & (num - 1)) == 0)
      System.out.printf("Given number is power of 2.\n");
    else
      System.out.printf("Given number is not power of 2.\n");
  }
}

Output:

Enter Number: 32
Given number is power of 2.

 

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 count the number of bits to be fli... >>
<< Java program to swap two bits of a 32-bit integer ...