itgle.com
更多“ 若有定义float X=1.5;int a=1,b=3,C=2;,则正确的switch语句是( )。A.B.C.D. ”相关问题
  • 第1题:

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

    A.swimh(x) {case 1.0:printf("*\n"); case 2.0:printf("**\n");}

    B.switch((int)x); {case 1:printf("*\n"); case 2:printf("**\n");}

    C.switch(a+

    D. {case 1:pfintf("*\n"); case 2+1:pfintf("**\n");}switch(a-I-{case 1:pfintf("*\n"); case c:printf("**\n");}


    正确答案:C
    解析: C语言中,switch语句专用于实现多分支结构程序,其特点是各分支清晰且直观。switch后面括号中可以是任何表达式,取其整数部分与各常量表达式进行比较。常量表达式中不能出现变量,且类型必须是整型、字符型或枚举型,各常量表达式各不相同。

  • 第2题:

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

    A.switch(x) { case l.0:printf("*n"); case 2.0:printf("**n"); }

    B.switch((int)x); { case l:printf("*n"); case 2:printf("**n"); }

    C.switch(a+b) { case l:printf("*n"); case 2+1:printf("**n"); }

    D.switch(a+b) { case l:printf("*n"); case c:printf("**n"); }


    C

  • 第3题:

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

    A.switch(x) { case 1.0: printf("*"); case 2.0: printf("**"); }

    B.switch((int)x); { case 1: printf("*"); case 2: printf("**"); }

    C.switch(a+b) { case 1: printf("*"); case 1+2: printf("**"); }

    D.switch(a+b) { case 1: printf("*"); case c: printf("**"); }


    C

  • 第4题:

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

    A.switch (x) {case 1.0:printf("*n"); case 2.0:printf("**n");}

    B.switch ((int)x) ; {case 1:printf("*n"); case 2:printf("**n");}

    C.switch (a+b) {case1:printf(**n); case c:printf(**n);}

    D.switch (a+b) {case 1:printf("*n"); case 2+1:printf("**n");}


    B

  • 第5题:

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

    A.switch(x) { case l.0:printf("*n"); case 2.0:printf("**n");}

    B.switch((int)x); { case l:printf("*n"); case 2:printf("**n");}

    C.switch(a+b); { case l:printf("*n"); case 2+1:printf("**n");}

    D.switch(a+b) { case l:printf("*n"); case c:printf("**n");}


    C