执行以下程序后的输出结果为#include
执行以下程序后的输出结果为#include
int main()
{
int a=1,b=0;switch (a)
{
case 1:
switch (b)
{
case 0: printf(“0“);break;case 1: printf(“1“);break;}
case 2: printf(“2“);break;}
return 0;}
A.0*2*
B.0
C.0*1*2
D.有语法错误
正确答案:02
Tag:C语言程序设计精髓 中国大学MOOCC语言程序设计精髓 语法错误
时间:2021-12-07 14:48:15