【单选题】
有以下程序#includestdio.hmain(){ int a=1,b=0;if(--a) else if(a==0) b+=2;else b+=3;printf(“%d\n”,b); }程序运行后的输出结果是( )。
【单选题】
有以下程序#includestdio.hmain(){ int a=1,b=0;if(--a) else if(a==0) b+=2;else b+=3;printf(“%d\n”,b); }程序运行后的输出结果是。
【单选题】
以下程序的输出结果是()。 main( ) { int b[3][3]={0,1,2,0,1,2,0,1,2},i,j,t=0; for(i=0;i for(j=i;j t=t+b[i][b[j][j]]; printf(%d\n,t); }
【单选题】
执行以下语句后b的值为( )。
Int a=5,b=6,w=1,x=2,y=3,z=4;
(a=wx)(b=y
【单选题】
以下程序运行后的输出结果是( )
main() { int a=1,b=2;
a=a+b; b=a-b; a=a-b; printf(%d,%d\n,a,B.;
}
【单选题】
以下程序段:int i,a=3,b=2;i=(--a==b++)?--a:++b;printf(i=%d a=%d b=%d,i,a,b);输出结果是。
【单选题】
语句:printf("%d",(a=2)&&(b=-2));的输出结果是()
【单选题】
有如下程序:
#includevoid main( )
{ int a=2,b=-1,c=2;
if (ab)
if (b0) c=0;
else c++;
printf(%d\n
}
该程序的输出结果是
【单选题】
设”int a=15,b=26;”,则”cout(a,b);”的输出结果是()
【单选题】
设”int a=15,b=26;”,则”cout<<(a,b);”的输出结果是()。