问题4296--what’s the output?

4296: what’s the output?

[命题人 : ]
时间限制 : 1.000 sec  内存限制 : 128 MB

题目描述

For the following code fragment, what’s the output?
float f1 = 0.2, f2 = 0.5;
printf("(f1*f1 == 0.1) = %d", f1*f1 == 0.1);
printf("(f1+f1 == 0.07) = %d", f1+f1 == 0.07);

来源/分类