牛客681521211号
牛客681521211号
题解
题解 | #查找输入整数二进制中1的个数#
全部文章
题解
归档
标签
去牛客网
登录
/
注册
题解 | #查找输入整数二进制中1的个数#
392 浏览
0 回复
2021-10-16
牛客681521211号
+关注
查找输入整数二进制中1的个数
http://www.nowcoder.com/practice/1b46eb4cf3fa49b9965ac3c2c1caf5ad
while True: try: num=bin(int(input())) a=num.count("1") print(a) except: break
Python3
举报
收藏
赞
评论加载中...