下列程序的输出结果是( )a=1;switch a case 0&1 disp('one') case {1,2} disp('two') case 3 disp('three') otherwise disp('four')end。
A: four
B: three
C: two
D: one
A: four
B: three
C: two
D: one
举一反三
- 下列程序的输出结果是( )a=1;switch a case 01 disp('one') case {1,2} disp('two') case 3 disp('three') otherwise disp('four')end A: one B: two C: three D: four
- 下列程序的输出结果是( )。a=1;switch a case 3|4 disp('perfect') case {1,2} disp('ok') otherwise disp('no')end? ok|perfect|no|2
- 中国大学MOOC: 下列程序的输出结果是( )。a=1;switch a case 0|4 disp(perfect) case {1,2} disp(ok) otherwise disp(no)end
- 中国大学MOOC: 下列程序的输出结果是( )。a=1;switch a case 3|4 disp(ok) case {1,2} disp(perfect) otherwise disp(no)end
- a=1; switch a case 3|4 disp('ok') case {1,2} disp('perfect') otherwise disp('no') end