下面这段代码的运行结果是( )。int day = 3;switch (day){case 1:case 3:case 5:System.out.println("学钢琴!");break;case 2:System.out.println("学英语!");default:System.out.println("休息哦!");}
A: 学钢琴!
B: 学钢琴!学英语!休息哦!
C: 学钢琴!休息哦!
D: 没有任何输出
A: 学钢琴!
B: 学钢琴!学英语!休息哦!
C: 学钢琴!休息哦!
D: 没有任何输出
举一反三
- 运行下面这段代码的结果为________________。 int day = 3; switch(day){ case 1: case 3: case 5: System.out.print("学钢琴!"); break; case 2: System.out.print("学英语!"); default: System.out.print("去必胜客吃饭!"); }
- 【单选题】下面这段代码的运行结果是() A. 学钢琴! B. 学钢琴! 学英语! 休息哦! C. 学钢琴 休息哦! D. 没有任何输出
- 请看下面的程序代码,当 n 为( )值时,程序段将输出字符串 second。 [br][/br] switch(n) { [br][/br] case 0: System .out .println(“first”); [br][/br] case 1: [br][/br] case 2: System .out .println(“second”); break; [br][/br] default: System .out .println(“end”); [br][/br] }(2.0) A: 0 B: 1 C: 2 D: 以上都可以
- 运行下面代码将将输出什么内容? int i = 1; switch (i) { case 0: System.out.println("zero"); break; case 1: System.out.println("one"); case 2: System.out.println("two"); default: System.out.println("default"); }
- 在下面代码中x为何值时输出结果为“out2”? switch(x){ case 1:System.out.println("out1");break; case 2: case 3:System.out.println("out2");break; default:System.out.println("end"); }