南江边
南江边
题解
题解 | #查找输入整数二进制中1的个数#
去牛客网
题解 | #查找输入整数二进制中1的个数#
来自
【【牛客站内】华为机试题—简单】
237 浏览
0 回复
2022-04-07
南江边
+关注
查找输入整数二进制中1的个数
http://www.nowcoder.com/practice/1b46eb4cf3fa49b9965ac3c2c1caf5ad
while True:
try:
print(str(bin(int(input()))).count('1'))
##bin()输入为int整数、.count()的对象是字符串
except:
break
Python3
举报
收藏
赞
相关专栏
【牛客站内】华为机试题—简单
21篇文章
6订阅
+订阅
评论加载中...