以下表示,哪个编写是对的()(2.0)
A: int x=3.5
B: float x=3.5
C: char x=a
D: double x=2
A: int x=3.5
B: float x=3.5
C: char x=a
D: double x=2
举一反三
- 设a=2,b=3,x=3.5,y=2.5,则(float)(a b)/2 (int)x%(int)y为【】
- {经过下述赋值后,变量x的数据类型是:int x=3;double y;y=(double)x;} A: int B: char C: float D: double
- 经过下述赋值后,变量x的数据类型是( )。float x=21.0;int y; y=(int)x; A: int B: float C: double D: char
- 有定义:char a; int b; float x; double y;则表达式a%b-y*x值的数据类型为( )。 A: float B: char C: int D: double
- 若有定义:int a=2,b=3;float x=3.5,y=2.5;则表达式(float)(a+b)/2+(int)x%(int)y的值为________