没有搜到到结果?点击这里求解答/求资源。
【单选题】
有以下程序#includestdio.hmain(){ int a=1,b=0;if(--a) else if(a==0) b+=2;else b+=3;printf(“%d\n”,b); }程序运行后的输出结果是。

0
1
2
3
【单选题】
C语言对嵌套if语句的规定是:else语句总是与( )配对

其之前最近的if
第一个if
缩进位置相同的if
其之前最近的且尚未配对的if
【单选题】
假定所有变量均已正确定义,则下列程序段运行后y的值是(  ) int a=0,y=10; if(a=0) y--; else if(a0) y++; else y+=y;

20
11
9
0
【单选题】
She will have to find somewhere else to work, for she can’t ____this loud noise any longer.

come up with
catch up with
keep up with
put up with
【单选题】
20. ______ you can’t answer this question, we have to ask someone else for help.

Although
While
Whether
Since
【单选题】
The ( ) news is that work can be fun any time we put human first, everything else second.

bad
good
new
neutral
【单选题】
下述程序的运行结果( )。 #includevoid main() { int a=5,b=4,c=3,d=2; if(ac)printf(%d\n else if((c-1=d)==1)printf(%d\n,d+1); else printf(%d\n,d+2); }

1
2
3
4
【单选题】
下述程序的运行结果( )。 #includevoid main() { int a=5,b=4,c=3,d=2; if(ac)printf(%d\n else if((c-1=d)==1)printf(%d\n,d+1); else printf(%d\n,d+2); }

0
1
2
3
【单选题】
以下选项中与if(a==1)a=b;else a++;语句功能不同的switch语句是。

switch(a){ case1:a=b; break; default:a++;}
switch(a==1){ case0:a=b; break;case1:a++;}
switch(a){ default:a++;break;case1:a=b;}
switch(a==1){ case1:a=b;break;case0:a++;}
【单选题】
以下选项中与if(a==1)a=b; else a++;语句功能不同的switch语句是。

switch(a) {case1:a=b;break; default:a++; }
switch(a==1) {case 0:a=b;break;case 1:a++; }
switch(a) {default:a++;break;case 1:a=b;}
switch(a==1) {case 1:a=b;break; case 0:a++;}