下面代码的输出结果为
int func(int x)
{
int countx =0;
while(x)
{
countx ++;
x = x&(x-1);
}
return countx;
}
int main()
{
cout
A255
B8
C12
D6
相关试题
-
下面代码的输出结果为 int func(int x) { int countx =0; while(x) { countx ++; x = x&(x-1); } r
-
下面程序的输出结果为( ) #include using namespace std; func (int a,int b) { int c; c=a*b; return (c
-
下面程序的输出结果为( ) #include using namespace std; unsigned func(unsigned num) { unsigned d=1,k;
-
下面程序的输出结果是( ) #include using namespace std; int fun(int a,int b) { return (++a*b++); } int m
-
程序的输出结果是()。 int b=2; int func(int *a) { b += *a; return(b);} main() { int a=2, res=2; res += func(&