【单选题】
有以下程序#includestdio.hmain(){ int a=1,b=0;if(--a) else if(a==0) b+=2;else b+=3;printf(“%d\n”,b); }程序运行后的输出结果是。
【单选题】
C语言对嵌套if语句的规定是:else语句总是与( )配对
【单选题】
假定所有变量均已正确定义,则下列程序段运行后y的值是( ) int a=0,y=10;
if(a=0) y--;
else if(a0) y++;
else y+=y;
【单选题】
She will have to find somewhere else to work, for she
can’t ____this loud noise any longer.
【单选题】
20. ______ you can’t answer this question, we have to ask someone else for help.
【单选题】
The ( ) news is that work can be fun any time we put human first, everything else second.
【单选题】
下述程序的运行结果( )。
#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);
}
【单选题】
下述程序的运行结果( )。
#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);
}
【单选题】
以下选项中与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++;}