免费注册 手机版 网站地图 小工具

学而优·知识库

首 页
int Calc(unsigned int x) { int count=0; while(x) { printf("x=%i ",x); count++
int Calc(unsigned int x)
{
int count=0;
while(x)
{
printf("x=%i ",x);
count++;
x=x&(x-1);
}
return count;
}
问 Calc(9999)的值是多少。
参考答案

关闭

前往注册

我已注册,登录账号 继续查看答案