Java 四舍五入 0.05 的钱

发布于 2024-11-26 00:33:09 字数 82 浏览 2 评论 0原文

我有 7.125(双倍),需要将其变为 7.15。最简单的方法是什么?

找到了舍入,但我得到 7.13,请帮忙。

谢谢

I have 7.125 (double), need to make it 7.15. What could be the easiest way?

Found round up, but am getting 7.13, please help.

thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

浅听莫相离 2024-12-03 00:33:09

最简单的方法是乘以 20.0,舍入为整数,然后再次除以 20.0。这样想:1.0 / 20.0 = 0.05...这就是为什么这会起作用。

请注意,“舍入”与“取整”(或转换为 int)不同。您应该将 java.lang.Math.round() 用于 doublefloat 类型,或 java.math.BigDecimal.round (MathContext) 对于 BigDecimal 类型

您最好使用 BigDecimal 来实现此目的

The easiest way is to multiply by 20.0, round to integers and divide by 20.0 again. Think of it this way: 1.0 / 20.0 = 0.05... That's why this will work.

Note, "rounding" is not the same as "flooring" (or casting to int). You should use java.lang.Math.round() for double and float types, or java.math.BigDecimal.round(MathContext) for BigDecimal types

You might be better off using BigDecimal for this

鸠魁 2024-12-03 00:33:09

向上舍入到最接近的 0.05 的简单方法如下。

int ans = java.lang.Math.round((7.125 / 0.5)) * 0.5

这适用于您想要舍入的任何增量。只需更改等式中的 0.5 即可。

A simple way to round up to the nearest .05 is the following.

int ans = java.lang.Math.round((7.125 / 0.5)) * 0.5

This works with any increments you would like to round by. Just change the 0.5 in the equation.

盛夏尉蓝 2024-12-03 00:33:09

将值取底然后添加 0.15?

Floor the value then add 0.15?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文