Python_zhang
Python_zhang
题解
题解 | #求int型正整数在内存中存储时1的个数#
全部文章
题解
归档
标签
去牛客网
登录
/
注册
题解 | #求int型正整数在内存中存储时1的个数#
389 浏览
0 回复
2022-03-25
Python_zhang
+关注
求int型正整数在内存中存储时1的个数
http://www.nowcoder.com/practice/440f16e490a0404786865e99c6ad91c9
#python 整除用// n = int(input()) count = 0 while n!=0: if(n%2==1): count +=1 n //=2 print(count)
Python3
举报
收藏
赞
评论加载中...