四舍五入到最接近的 0.05 值的问题
已经有很多问题问过这个问题。
一种流行的答案是使用以下公式。
Math.ceiling(myValue * 20) / 20
我需要以下输出作为相应的输入。
16.489 (input) - 16.49(output)
使用上面的公式
16.489*20 = 329.78
Math.ceil(329.78) = 330.0
and 330.0 /20 = 16.5
,但我想要的是 16.49。
理想情况下,Math.ceil 的结果应该是 329.8
那么我们如何解决上述情况呢?与此类似的案例还有很多。
There are already so many questions asked about this already.
One popular answer is to use the below formula.
Math.ceiling(myValue * 20) / 20
I need the following output for corresponding input.
16.489 (input) - 16.49(output)
Using the above formula
16.489*20 = 329.78
Math.ceil(329.78) = 330.0
and 330.0 /20 = 16.5
but what I want is 16.49.
Ideally the Math.ceil stuff should have given 329.8
So how do we get around the above case? There are many other cases similar to this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
您应该使用 102 进行乘法/除法,而不是使用 2*10 进行乘法/除法。
不过,我建议您使用
Math.round(100*a) / 100.0
,或者如果您需要打印,则使用printf
或DecimalFormat
。示例:
输出:
Instead of multiplying / dividing with 2*10, you should do it with 102.
However, I suggest you use
Math.round(100*a) / 100.0
, or if you need it for printing,printf
orDecimalFormat
.Examples:
Output:
为什么不使用 Math.圆()
格式化你的值?
编辑:Math.round(值 * 100.0) / 100.0;
Why not use Math.round()
to format your value?
edit: Math.round(value * 100.0) / 100.0;
我认为这会对你有帮助.此链接为您提供有关如何将数字四舍五入到小数点后第 n 位的讨论。
I think this would help you.This link gives you a discussion on how to round off a number to the n-th decimal place.
将 16.489 向上舍入到最接近的 0.05 正确是 16.5,而 16.45 是下一个可能的最低值。
所看到的行为是正确的。如果您希望能够四舍五入到最接近的 0.01,那么
Math.ceiling(myValue * 100) / 100
将是更合适的解决方案。
Rounding 16.489 up to the nearest 0.05 is correctly 16.5, with 16.45 being the next lowest possible value.
The behaviour seen is correct. If you want to be able to round up to the nearest 0.01 then
Math.ceiling(myValue * 100) / 100
would be a more appropriate solution.
试试这个
try this