下列程序段的输出结果为 ______。 int a=2; switch (a) { case 2: System.out.print("Value is 2."); case 3: Syst

admin2009-02-15  16

问题 下列程序段的输出结果为 ______。
   int a=2;
   switch (a)
   {
      case 2:
      System.out.print("Value is 2.");
      case 3:
      System.out.println("Value is.");
      break;
      default:
      System.out.println("end");
      break;
   }

选项

答案Value is 2.Value is 3.

解析
转载请注明原文地址:https://kaotiyun.com/show/Gynp777K
0

最新回复(0)