题解 | #求int型正整数在内存中存储时1的个数#
求int型正整数在内存中存储时1的个数
https://www.nowcoder.com/practice/440f16e490a0404786865e99c6ad91c9
n = bin(int(input()))
res = 0
for i in str(n):
if i == '1':
res += 1
print(res)
求int型正整数在内存中存储时1的个数
https://www.nowcoder.com/practice/440f16e490a0404786865e99c6ad91c9
n = bin(int(input()))
res = 0
for i in str(n):
if i == '1':
res += 1
print(res)
相关推荐
查看2道真题和解析