若有定义: float x=1.5; int a=1,b=3,c=2; 则正确的switch语句是()。
举一反三
- 若有定义:floatx=1.5;inta=1,b=3,c=2;则正确的switch语句是_。
- 若有定义:floatx=1.5;inta=1,b=3,c=2;,则正确的switch语句是()。
- 若有以下定义int a,b; float x,则正确的赋值语句是( )。 A: a=1,b=2 B: ++; C: a=b=5 D: =int(x);
- 若有以下定义int a, b; float x = 2.5; 则正确的赋值语句是( ) A: 1 + 2 = a; B: = 0x9a; C: = x % 5; D: = 1 + 2 = a
- 若有以下定义: float x;int a,b;则正确的switch 语句是 A: switch(x){case 1:a++;case 2:b++;} B: switch(x){case 1,2:a++;case 2:b++;} C: switch(a+b){case 1,2:a++;case 2:b++;} D: switch(a+b){case 1:a++;case 2:b++;}