设有变量定义:int i=3,j=5;float x=2.5;double y=5.0;则表达式y+=i-=j*=++x;的计算结果为________。
-9.0
举一反三
- 中国大学MOOC: 设有变量定义:int i=3,j=5;float x=2.5;double y=5.0;则表达式y+=i-=j*=++x;的计算结果为________。
- 设有变量定义:float x=2.5;double y=5.0;则表达式 (int)x / y的值为( )。(若为浮点类型,则用小数点后一位数字表示) A: 2 B: 2.5 C: 3 D: 2.0
- 设有定义 int x ; float y ; double z ;,则表达式 x + z - y 值的数据类型为______。 A: float B: cha C: int D: double
- 设有变量定义:“char x; int y; float z;double w;” 则表达式:x*y+z+w值的数据类型是
- 下列变量定义错误的是() A: char ch1='m', ch2='\'; B: float x, y=1.56f; C: public int i=100, j=2, k: D: double x;y;
内容
- 0
设有以下变量定义语句:char w; int x; float y; double z;则表达式“w*x-z+y”的结果类型为()类型? A: float B: int C: double D: char
- 1
设有定义int x;float y;double z;,则表达式x+z-y值的数据类型为______
- 2
若有定义:int a=2,b=3;float x=3.5,y=2.5;则表达式(float)(a+b)/2+(int)x%(int)y的值为________
- 3
设x为float型变量,y为double型变量,a为int型变量,已知x=2.5f,a=7,y=4.22,则表达式x+a%3*(int)x%(int)y的值为。
- 4
若有定义“int i=7;float x=3.1415;double y=3;”,表达式“i+'a'*x+i/y”值的类型是______型