36. 二进制 1 的位数

Kuroko

py一行
print(bin(int(input())).count(“1”))

Andrew-Malcom

print(str(bin(int(input()))).count(‘1’))

Mothanburg

数字电子技术基础(第五版)
第5页

你当前正在回复 博客/题目
存在问题!