7
转换为int vs floor
这些之间有什么区别: float foo1 = (int)(bar / 3.0); float foo2 = floor(bar / 3.0); 据我了解,两种情况都有相同的结果。编译后的代码有什么区别吗?
120
c++
c
floating-point