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