问题

设有以下语句int a=1,b=2,c;c=a ^ (b$amp;A)6

B)7

C)8

D)9

参考答案
您可能感兴趣的试题
  • 有以下程序#include main(){ char c1,c2,c3,c4,c5,c6;scanf( % c % c % c % c,&c1,&c2,&c3,&c4);c5=g
  • 有以下程序main(){ int y=10;while(y--);printf(y= % d\n,y);}程序执行后的输出结果是A)y=0B)y=-1C)y=1D)while 构成无限循环
  • 有以下程序main(){ int a=0,b=0,c=0,d=0;if(a=1) b=1;c=2;else d=3;printf( % d, % d, % d, % d\n,a,b,c,d);}程
  • 有以下程序main(){ int i,j,x=0;for(i=0;i<2;i++){ x++;for(j=0;j<=3;j++){ if(j % 2) continue;x++;}x++;}print
  • 有以下程序int fun1(double a){return a*=a;}int fun2(double x,double y){ double a=0,b=0;a=fun1(x);b=fun1(y)
  • 有以下程序main(){ int i,t[][3]={9,8,7,6,5,4,3,2,1};for(i=0;i<3;i++) printf( % d,t[2-i][i]);}程序执行后的输出结果是