为了避免嵌套的if-else语句的二义性,C语言规定else总是与之组成配对关系的是:
A. 缩排位置相同的if
B. 在其之前未配对的if
C. 在其之前最近的未配对的if
D. 同一行上的if
以下不正确的if语句是:
A. if (x>y)
B. if (x=y) && (x!=0) x+=y
C. if (x!=y) scanf("%d",&x);else scanf("%d",&y)
D. if (x
若定义float x;int a,b,则正确的switch语句是:
A. switch(x) {case 1.0:printf("*\n");case 2.0:printf("**\n"); }
B. switch(x) {case 1.2:printf("*\n"); case 3:printf("**\n"); }
C. switch(a+b) {case 1:printf"*\n"};case 1+2:printf("**\n") }
D. switch(a+b) {case 1:printf("*\n");case 2:printf("**\n"); }
执行下列程序,输入为1的运行结果是:#include int main(){int k;scanf("%d",&k);switch(k){case 1:printf("%d ",k++);break;case 2: printf("%d ",k++);case 3: printf("%d ",k++);break;case 4: printf("%d ",k++);default:printf("Full!\n");}return 0;}
A. 1
B. 2
C. 2 3 4 5
D. 1 2 3 4