Module: (Python) Chương trình con: Thủ tục và Hàm - 2


Problem

3/8

Số đơn vị trong ký hiệu nhị phân của một số

Problem

Viết hàm tính toán, cho trước một số N ở dạng thập phân, số đơn vị trong biểu diễn nhị phân của số này (0 <= N <= 106)
 
Ví dụ <đầu>
# Đầu vào Đầu ra
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!