📌  相关文章
📜  在 Julia 中计算数字的二进制表示中的 1 和 0 – count_ones() 和 count_zeros() 方法

📅  最后修改于: 2021-11-25 04:44:15             🧑  作者: Mango

count_ones()是 julia 中的一个内置函数,用于计算指定数字的二进制表示中存在的 1 的数量。

例子:

# Julia program to illustrate 
# the use of count_ones() method
  
# Getting number of ones present 
# in the binary representation 
# of the specified number.
println(count_ones(0))
println(count_ones(1))
println(count_ones(15))
println(count_ones(20))

输出:

0
1
4
2

计数零

count_zeros()是 julia 中的一个内置函数,用于计算指定数字的二进制表示中存在的零的数量。

例子:

# Julia program to illustrate 
# the use of count_zeros() method
  
# Getting number of zeros present 
# in the binary representation 
# of the specified number.
println(count_zeros(0))
println(count_zeros(1))
println(count_zeros(Int32(2 ^ 16 - 1)))
println(count_zeros(Int32(2 ^ 16 - 10)))

输出:

64
63
16
18