Why is the result of RoundTo(87.285, -2) => 87.28

后端 未结 2 1428
别那么骄傲
别那么骄傲 2020-12-05 07:29

I expected that the result would be 87.29. I also tried SimpleRoundTo, but produces the same result.

In the help there is also a \"strange\" example: ms-help://embar

2条回答
  •  有刺的猬
    2020-12-05 08:24

    The exact value 87.285 is not representable as a floating-point value in Delphi. A page on my Web site shows what that value really is, as Extended, Double, and Single:

    87.285 = + 87.28500 00000 00000 00333 06690 73875 46962 12708 95004 27246 09375
    87.285 = + 87.28499 99999 99996 58939 48683 51519 10781 86035 15625
    87.285 = + 87.28500 36621 09375
    

    By default, floating-point literals in Delphi have type Extended, and as you can see, the Extended version of your number is slightly higher than 87.285, so it is correct that rounding to nearest would round up. But as a Double, the real number is slightly lower. That's why you get the number you expected if you explicitly store the number in a Double variable before calling RoundTo. There are overloads of that function for each of Delphi's floating-point types.

提交回复
热议问题