将浮点数加减运算用c语言写出来

2025-04-22 19:16:45
推荐回答(1个)
回答1:

将浮点数加减运算用c语言写出来
float f1 = 1.0f;
float f2 = 2.0f;
float f3;
f3 = f1+f3;
printf("%d",&f3);