A PHP Error was encountered

Severity: 8192

Message: str_replace(): Passing null to parameter #3 ($subject) of type array|string is deprecated

Filename: libraries/Filtered_db.php

Line Number: 23

Java program to check if all the bits of a given integer number are HIGH or not
Q:

Java program to check if all the bits of a given integer number are HIGH or not

0

Java program to check if all the bits of a given integer number are HIGH or not

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 if all the bits of a given integer number are HIGH or not is given below. The given program is compiled and executed successfully.

// Java program to check if all the bits of a 
// given integer number are HIGH or not

import java.util.Scanner;

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

    int num = 0;
    int temp = 0;

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

    while (num > 0) {
      temp = num & 1;
      if (temp == 0) {
        System.out.printf("All bits are not set.");
        return;
      }
      num = num >> 1;
    }
    System.out.printf("All bits are set in its binary representation.");
  }
}

Output:

Enter number: 7
All bits are set in its binary representation.

Explanation:

In the above program, we imported the "java.util.Scanner" package to read the variable's value 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)

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now