若有定义float w; int a, b; ,则合法的switch语句是( )。(1分)
来源:学生作业帮 编辑:大师作文网作业帮 分类:综合作业 时间:2024/11/18 22:09:27
若有定义float w; int a, b; ,则合法的switch语句是( )。(1分)
A、switch(w) { case 1.0: printf("*\n"); case
2.0: printf("**\n"); }
B、switch(a); { case 1 printf("*\n"); case 2
printf("**\n"); }
C、switch(b) { case 1: printf("*\n"); default:
printf("\n"); case 1+2: printf("**\n"); }
D、switch(a+b); { case 1: printf("*\n"); case
2: printf("**\n"); default: printf("\n"); }
A、switch(w) { case 1.0: printf("*\n"); case
2.0: printf("**\n"); }
B、switch(a); { case 1 printf("*\n"); case 2
printf("**\n"); }
C、switch(b) { case 1: printf("*\n"); default:
printf("\n"); case 1+2: printf("**\n"); }
D、switch(a+b); { case 1: printf("*\n"); case
2: printf("**\n"); default: printf("\n"); }
a 缺少default
b switch后有;
c 合法
d 同
b switch后有;
c 合法
d 同
若有定义float w; int a, b; ,则合法的switch语句是( )。(1分)
若有以下定义:float x; int a,b; 则正确的switch 语句是
若有定义:float x=1.5;int a=1,b=3,c=2;,则正确的switch语句是 ( )
以下的变量定义语句中,合法的是 :A.float $_*5= 3.4F; B.byte b1= 15678; C.int
若a 是float 型变量,b 是unsigned 型变 量,以下输入语句中合法的是().
35.\x05若有定义:int a,b ; float x,则以下不符合C语言语法的表达式是.
33.以下正确的数组定义语句是().A)int y[1][4]={1,2,3,4,5}; B)float x[3][]=
经过下列的语句 int j,a[10],*p;定义后,下列语句中合法的是(A).
若有定义:int b=7;float a=2.5,c=4.7;则下面的表达式 a+(int)(b/3*(int)(a+c
以下的变量定义语句中,合法的是( ).A.float $_*5= 3.4F; B.double a =Double.MA
设有定义语句“struct {int a;float b;char c;}abc,*p;”,则对结构体成员a的引用可以是
有以下定义语句double a,b;int w; long c; 若各变量已正确赋值,则下列选项中正确的表达式是____