设有定义intx;floatv;则5+x+v值的数据类型为int。()
第1题:
设有定义int x;float y;,则10+x+y值的数据类型是
A.int
B.double
C.float
D.不确定
第2题:
设有定义int x; float v;,则10+x+v值的数据类型是
A.int
B.double
C.float
D.不确定
第3题:
【填空题】若有定义:int x=3,y=2;float a=2.5,b=3.5;则表达式(x+y)%2+(int)a/(int)b的值为【 】。
第4题:
设有以下变量定义,并已赋确定的值: char w; int x; float y; double z; 则表达式:w*x+z-y所求得的数据类型为( )。
A.char
B.int
C.float
D.double
第5题:
若有定义:int x=3,y=2;float a=2.5,b=3.5;则表达式(x+y)%2+(int)a/(int)b的值为