南阳100
Posted Jeson
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了南阳100相关的知识,希望对你有一定的参考价值。
1 #include<stdio.h> 2 int ans; 3 int cus(int x) 4 { 5 if(x) 6 { 7 if(x&1) 8 ++ans; 9 cus(x>>1); 10 } 11 else 12 return ans; 13 } 14 int main() 15 { 16 int n,x; 17 scanf("%d",&n); 18 while(n--) 19 { 20 ans=0; 21 scanf("%d",&x); 22 printf("%d\n",cus(x)); 23 } 24 }
以上是关于南阳100的主要内容,如果未能解决你的问题,请参考以下文章