题目内容

程序段intx=3,a=1;switch(x) {case4:a++;case3:a++;case2:a++;case1:a++;}printf("%d",a);的输出结果是()。

A. 1
B. 2
C. 3
D. 4

查看答案
更多问题

程序段intx=5,y=8,max;max=(x>y)?x:y;printf("%d",max);的输出结果是( )。

A. 5
B. 8
C. 3
D. 13

以下程序的运行结果是________。#include ”stdio.h”main(){ int a,b,c,s,w,t;s=w=t=0;a= -1; b=3; c=3;if (c>0) s=a+b;if (a<=0){ if (b>0)if (c<=0) w=a-b;}else if (c>0) w=a-b;else t=c;printf(”%d %d %d”, s,w,t);}

以下程序的运行结果是________。#include ”stdio.h”main(){ int a,b,c,d,e;a=c=1;b=20;d=100;if (!a) d=d++;else if (!b)if (d) d= --d;else d= d--;printf(”%d\n\n”, d);}

以下程序运行的结果为________。main(){ int a,b,c,x,y,z;a=10;b=2;c=!(a%b);x=!(a/b);y=(a=0);z=(a=0);printf("%d,%d,%d,%d\n",c,x,y,z);}

答案查题题库