标签:style blog http io ar color os sp on
3 4 6 7
1 2 3
#include<stdio.h>
int main()
{
int test,n,ans;
scanf("%d",&test);
while(test--)
{
scanf("%d",&n);
ans=0;
while(n)
{
if(n%2)
ans++;
n/=2;
}
printf("%d\n",ans);
}
return 0;
}
标签:style blog http io ar color os sp on
原文地址:http://blog.csdn.net/hdd871532887/article/details/41688675