• 2022-06-18
    智慧职教: 分析下面代码:      (        ) int x; double d = 1.5; switch (d) {   case 1.0: x = 1;   case 1.5: x = 2;   case 2.0: x = 3; }
  • 举一反三