有定义:char a; int b; float x; double y;则表达式a%b-y*x值的数据类型为( )。
A: float
B: char
C: int
D: double
A: float
B: char
C: int
D: double
举一反三
- 中国大学MOOC: 有定义:char a; int b; float x; double y;则表达式a%b-y*x值的数据类型为( )。
- 若有下列类型说明语句:char w; int x ; float y ; double z ;则表达式w*x+z-y值的正确数据类型为( )。 A: float B: char C: int D: double
- 设有定义 int x ; float y ; double z ;,则表达式 x + z - y 值的数据类型为______。 A: float B: cha C: int D: double
- 设有以下变量定义语句:char w; int x; float y; double z;则表达式“w*x-z+y”的结果类型为()类型? A: float B: int C: double D: char
- 设有变量定义:“char x; int y; float z;double w;” 则表达式:x*y+z+w值的数据类型是