A. 只能是0或1 B. 只能是正整数或负整数 C. 只能是整型或字符型数据 D. 可以是任何类型的数据
A. 缩排位置相同的if B. 在其之前未配对的if C. 在其之前最近的未配对的if D. 同一行上的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<y) {x++;y--;}
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"); }