![]() |
#2
中学者2008-04-19 18:26
|
int func(x)
{
int countx = 0;
while(x)
{
countx ++;
x = x&(x-1);
}
return countx;
}
求x=9999时输出结果,请详细解答下,谢谢