gpt4 book ai didi

java - 双运算精度问题

转载 作者:行者123 更新时间:2023-12-01 22:04:55 25 4
gpt4 key购买 nike

我在 javascript 中遇到了类似的问题,我通过乘除 1000 解决了这个问题。如何在 Java 中解决这个问题?

代码片段:

double a=Double.parseDouble("1.8")/100;
System.out.println(a);

输出:

0.018000000000000002

我想要 0.018 作为输出。有建议吗?

最佳答案

你可以这样做:

 double a=Double.parseDouble("1.8")/100;
DecimalFormat df=new DecimalFormat("0.000");
String f = df.format(a);
try {
double dblValue = (Double)df.parse(f) ;
System.out.println(dblValue);
} catch (ParseException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}

      double dblValue2 = Math.round( a * 1000.0 ) / 1000.0;
System.out.println(dblValue2);

关于java - 双运算精度问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32963880/

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