若有定义: float x=1.5: int a=1,b=3,c=2; 则正确的switch语句是( )。

admin2020-10-26  24

问题 若有定义:
    float x=1.5:
    int a=1,b=3,c=2;
    则正确的switch语句是(    )。

选项 A、switch(a+b)
  {  case 1:prinff(“*\n”);
    case 2+1:prinff(“**\n”);}
B、switch((int)x);
  {  case 1:prinff(“*\n”);
    case 2:prinff(“**\n”);}
C、switch(x)
  {  case 1.0:prinff(“*\n”);
    case 2.0:prinff(“**\n”);}
D、switch(a+b)
  {  case 1:prinff(“*\n”);
case c:prinff(“**\n”);}

答案A

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

最新回复(0)