Q:

Golang program to print the counts of 0\'s in a binary number

belongs to collection: Golang math/bits Package Programs

0

Here, we will find the count of 1's a binary number using the bits.OnesCount() function and then subtract the result from total number bits to get the count of 0's, and then we will print the result on the console screen.

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 print the counts of 0's in a binary number is given below. The given program is compiled and executed on the ubuntu 18.04 operating system successfully.

// Golang program to print the counts
// of 0's in a binary number

package main

import (
	"fmt"
	"math/bits"
)

func main() {
	var num1 uint8 = 10
	var num2 uint16 = 20
	var num3 uint32 = 30
	var num4 uint64 = 40

	fmt.Printf("Binary number: %08b\n", num1)
	fmt.Printf("Count of 0's : %d\n\n", 8-bits.OnesCount8(num1))

	fmt.Printf("Binary number: %016b\n", num2)
	fmt.Printf("Count of 0's : %d\n\n", 16-bits.OnesCount16(num2))

	fmt.Printf("Binary number: %032b\n", num3)
	fmt.Printf("Count of 0's : %d\n\n", 32-bits.OnesCount32(num3))

	fmt.Printf("Binary number: %064b\n", num4)
	fmt.Printf("Count of 0's : %d\n\n", 64-bits.OnesCount64(num4))
}

Output:

Binary number: 00001010
Count of 0's : 6

Binary number: 0000000000010100
Count of 0's : 14

Binary number: 00000000000000000000000000011110
Count of 0's : 28

Binary number: 0000000000000000000000000000000000000000000000000000000000101000
Count of 0's : 62

Explanation:

In the above program, we declare the package main. The main package is used to tell the Go language compiler that the package must be compiled and produced the executable file. Here, we imported the required packages to predefined functions.

In the main() function, we created 4 integer variables with the different numbers of bits with an initial value of 0. Then we count the total number of 1's in the corresponding binary number using the bits.OnesCount() function and then subtract the result from the total number of bits and printed the result on the console screen.

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

total answers (1)

Golang program to get the reverse of the specified... >>
<< Golang program to print the counts of 1\'s in...