四舍五入到最接近的 0.05 值的问题

发布于 2024-11-15 08:14:47 字数 476 浏览 5 评论 0原文

已经有很多问题问过这个问题。

一种流行的答案是使用以下公式。

  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 技术交流群。

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

发布评论

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

评论(5

一个人的旅程 2024-11-22 08:14:47

您应该使用 102 进行乘法/除法,而不是使用 2*10 进行乘法/除法。

不过,我建议您使用 Math.round(100*a) / 100.0,或者如果您需要打印,则使用 printfDecimalFormat

示例:

double input = 16.489;

// Math.round
System.out.println(Math.round(100 * input) / 100.0);

// Decimal format
System.out.println(new DecimalFormat("#.##").format(input));

// printf
System.out.printf("%.2f", input);

输出

16.49
16.49
16.49

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 or DecimalFormat.

Examples:

double input = 16.489;

// Math.round
System.out.println(Math.round(100 * input) / 100.0);

// Decimal format
System.out.println(new DecimalFormat("#.##").format(input));

// printf
System.out.printf("%.2f", input);

Output:

16.49
16.49
16.49
故事还在继续 2024-11-22 08:14:47

为什么不使用 Math.圆()
格式化你的值?

编辑:Math.round(值 * 100.0) / 100.0;

Why not use Math.round()
to format your value?

edit: Math.round(value * 100.0) / 100.0;

画中仙 2024-11-22 08:14:47

我认为会对你有帮助.此链接为您提供有关如何将数字四舍五入到小数点后第 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.

野味少女 2024-11-22 08:14:47

将 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.

故事灯 2024-11-22 08:14:47

试试这个

round(16.489, 2, BigDecimal.ROUND_CEILING);

public static double round(double x, int scale, int roundingMethod) {
        try {
            return (new BigDecimal
                   (Double.toString(x))
                   .setScale(scale, roundingMethod))
                   .doubleValue();
        } catch (NumberFormatException ex) {
            if (Double.isInfinite(x)) {
                return x;
            } else {
                return Double.NaN;
            }
        }
    }

try this

round(16.489, 2, BigDecimal.ROUND_CEILING);

public static double round(double x, int scale, int roundingMethod) {
        try {
            return (new BigDecimal
                   (Double.toString(x))
                   .setScale(scale, roundingMethod))
                   .doubleValue();
        } catch (NumberFormatException ex) {
            if (Double.isInfinite(x)) {
                return x;
            } else {
                return Double.NaN;
            }
        }
    }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文