下面程序的运行结果为(  )。    #include<iostream>    using namespace std;    void main(){        int a=1;        switch(a){            case 

admin2013-05-30  32

问题 下面程序的运行结果为(  )。    #include<iostream>    using namespace std;    void main(){        int a=1;        switch(a){            case 1:cout<<"1";            case 2:cout<<"2";                break;            default:cout<<"0";        }    }

选项 A、12
B、120
C、1
D、10

答案A

解析 switch语句检测到符合条件case执行后面语句不再判断。
转载请注明原文地址:https://jikaoti.com/ti/YyE0FFFM
0

最新回复(0)