题解 | #查找输入整数二进制中1的个数#
查找输入整数二进制中1的个数
http://www.nowcoder.com/practice/1b46eb4cf3fa49b9965ac3c2c1caf5ad
while True:
try:
print(str(bin(int(input()))).count('1'))##bin()输入为int整数、.count()的对象是字符串
except:
break
try:
print(str(bin(int(input()))).count('1'))##bin()输入为int整数、.count()的对象是字符串
except:
break
【牛客站内】华为机试题—简单 文章被收录于专栏
【牛客站内】华为机试题练习记录