Questions tagged «floor»

6
为什么Math.Floor(Double)返回Double类型的值?
我需要从十进制或双精度中获取左侧整数值。对于Ex:我需要从4.6获取值4。我尝试使用Math.Floor函数,但它返回一个双精度值,例如:从4.6返回4.0。MSDN文档说它返回一个整数值。我在这里想念什么吗?还是有其他方法可以实现我想要的?
103 c#  math  floor 

5
为什么很多(旧)程序都使用floor(0.5 +输入)而不是round(输入)?
差异在于返回值,我相信这种情况会给平局提供输入,例如以下代码: int main() { std::cout.precision(100); double input = std::nextafter(0.05, 0.0) / 0.1; double x1 = floor(0.5 + input); double x2 = round(input); std::cout << x1 << std::endl; std::cout << x2 << std::endl; } 输出: 1 0 但是最终它们只是不同的结果,一个选择了自己喜欢的一个。我看到许多使用floor(0.5 + input)而不是的“旧” C / C ++程序round(input)。 有什么历史原因吗?最便宜的CPU?
80 c++  rounding  floor 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.