您的位置:首页 > 其它

题目100 1的个数

2016-07-29 12:42 246 查看


     已AC代码:

#include<cstdio>
using namespace std;

int main()
{
int t;
scanf("%d", &t);
while(t--)
{
int n, cont=0;
scanf("%d", &n);
while(n)
{
if(n%2 == 1)
cont++;
n /= 2;
}
printf("%d\n", cont);
}
return 0;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  南阳理工OJ