在 Java 中使用双精度保持精度
public class doublePrecision {
public static void main(String[] args) {
double total = 0;
total += 5.6;
total += 5.8;
System.out.println(total);
}
}
上面的代码打印:
11.399999999999
我如何让它只打印(或能够用作)11.4?