设有定义float x,y; 条件运算符表达式( )表示求出x与y中更大的值。
举一反三
- 设有定义 float x=3.5f, y=4.6f;则x != y表达式的值为____
- 设有定义 int x ; float y ; double z ;,则表达式 x + z - y 值的数据类型为______。 A: float B: cha C: int D: double
- 【单选题】设有定义:int x=5, y=2; 则下列语句中正确的是:(_____) A: x = float(x) % y; B: x = float(x) / y; C: x = (float)x % y; D: x = (float)x / y;
- 设有定义int x;float y;double z;,则表达式x+z-y值的数据类型为______
- 设有变量定义:“char x; int y; float z;double w;” 则表达式:x*y+z+w值的数据类型是