Appearance
题目
假定变量 i、f 和 d 的数据类型分别为 int、float 和 double(int 用补码表示,float 和 double 分别用 IEEE 754 单精度和双精度浮点数格式表示),已知 i=785,f=1.5678e3,d=1.5e100。若在 32 位机器中执行下列关系表达式,则结果为"真"的是( )。
I. i == (int)(float)i
II. f == (float)(int)f
III. f == (float)(double)f
IV. (d+f)-d == f