Q:

Java program to find the position of MSB bit of an integer number

belongs to collection: Java Basic Programs

0

Java program to find the position of MSB bit of an integer number

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 find the position of the MSB bit of an integer number is given below. The given program is compiled and executed successfully.

// Java program to find the position of MSB bit 
// of an integer number

import java.util.Scanner;

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

    int num = 0;
    int pos = 0;

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

    while (num > 0) {
      pos++;
      num = num >> 1;
    }
    System.out.printf("Position of MSB bit is: %d\n", pos - 1);
  }
}

Output:

Enter Number: 14
Position of MSB bit is: 3

 

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 find the highest bit set for a giv... >>
<< Java program to find the next number that is the p...