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 a number contains the alternative pattern of bits
Q:

Java program to check a number contains the alternative pattern of bits

0

Java program to check a number contains the alternative pattern of bits

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 number containing the alternative pattern of bits is given below. The given program is compiled and executed successfully.

// Java program to check a number that contains 
// the alternative pattern of bits

import java.util.Scanner;

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

    int num = 0;
    int tmp = 0;
    int cnt = 0;
    int i = 0;

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

    tmp = num;
    while (tmp != 0) {
      cnt++;
      tmp = tmp >> 1;
    }

    System.out.printf("Binary Number: ");
    for (i = cnt - 1; i >= 0; i--) {
      if ((num & (1 << i)) != 0)
        System.out.printf("1");
      else
        System.out.printf("0");
    }

    for (i = 0; i < cnt - 1; i++) {
      if (((num >> i) & 1) == ((num >> (i + 2)) & 1)) {
        continue;
      } else {
        System.out.printf("\nAlternate BIT pattern does not exist\n");
        return;
      }
    }
    System.out.printf("\nAlternate BIT pattern exists\n");
  }
}

Output:

Enter number: 170
Binary Number: 10101010
Alternate BIT pattern exists

 

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