python解法
while True:#多组输入使用try + except try: n=bin(eval(input()))#接收输入并转化为二进制 print(n.count('1'))#打印二进制中1的个数 except: break