注意:此页面搜索的是所有试题
设: float w; int a, b;则合法的switch语句是(   )。(2分)
Aswitch(w) { case 1.0: printf("*\n"); case 2.0: printf("**\n"); }
BswitchA.; { case 1 printf("*\n"); case 2 printf("**\n");}
CswitchB.{ case 1: printf("*\n"); default: printf("\n"); case 1+2: printf("**\n");}
Dswitch(a+b);{ case 1: printf("*\n");case 2: printf("**\n");default: printf("\n");

参考答案