题解 | #查找输入整数二进制中1的个数#
查找输入整数二进制中1的个数
http://www.nowcoder.com/practice/1b46eb4cf3fa49b9965ac3c2c1caf5ad
#include<iostream>
using namespace std;
int main()
{
int d;
while(cin>>d)
{
int op=0x1;
int len=sizeof(int)*8;
int count=0;
for(int i=1;i<=len;i++)
{
if(op&d)
{
count++;
}
op=op<<1;
}
cout<<count<<endl;
}
}