With the (develop)______ of the internet, more and more people prefer to do business online.
查看答案
This APP allows you (see)_____ the departure and arrivals of all the flights.
下列关于switch语句和break语句的结论中,正确的是()
A) break语句是switch语句中的一部分
B)在switch语句中可以根据需要使用或不使用break语句
C)在switch语句中必须使用break语句
D) break语句是switch语句的一个分支
若int I=10;执行下列程序后,变量I的正确结果是()switch(i) {case 9 : I+=1;case 10 : I+=1;case 11 : I+=1;default : I+=1; }
A) 10
B) 11
C) 12
D)13
给定一个C程序的代码片段,score为多少?grade='B';switch(grade){case'A': score=100;case'B': score=90;case'C':case'D': score=60;default: score=0;}
A. 100
B. 90
C. 60
D. 0