Module: (Python) 子例程:过程和函数 - 2


Problem

3/8

数字的二进制表示法中的单位数

Problem

编写一个函数,给定一个十进制数 N,计算该数的二进制表示中的个数 (0 <= N <= 106)
 
例子 <头> <日># <正文>
输入 输出
1 255 8
Write the program below
N = int(input())
k = numberOfOnes(N)
print(k)     

     

Program check result

To check the solution of the problem, you need to register or log in!