gpt4 book ai didi

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

转载 作者:搜寻专家 更新时间:2023-11-01 02:15:49 28 4
gpt4 key购买 nike

已经有 so many questions已经问过这个了。

一个流行的答案是使用下面的公式。

  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

那么我们如何绕过上述情况呢?类似的案例还有很多。

最佳答案

您应该用 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

关于java - 四舍五入到最接近的 0.05 值的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6332548/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com