首页 试题详情
单选题

下面代码的输出结果为 int func(int x) { int countx =0; while(x) { countx ++; x = x&(x-1); } return countx; } int main() { cout

A255

B8

C12

D6

正确答案:A (备注:此答案有误)

相似试题

  • 单选题

    下面代码输出结果int func(int x) { int countx =0; while(x) { countx ++; x = x&(x-1); } return countx; }int main(){ cout

    答案解析

  • 单选题

    阅读下面代码输出结果()int main(){ char str1[] = abc; char str2[] = abc; const char str3[] = abc; const char str4[] = abc; const char *str5 = abc; const char *str6 = abc; cout

    答案解析

  • 单选题

    下面程序输出结果(   ) #include using namespace std; int main( ) { int a[3][3]={{1,2},{3,4},{5}}; int s=0; for (int i=1;i

    答案解析

  • 单选题

    下面C代码输出结果是( )。int answer,result; answer=100; result=answer-10; printf(“The result is %d”, result 5);

    答案解析

  • 单选题

    运行下面代码段,输出结果()。print (bool (‘False‘)) print(bool)

    答案解析

热门题库