IEEE754标准规定的五种四舍五入方法
先看下如下Java代码:double dTest=82.545d; DecimalFormat format=new DecimalFormat("0.00"); System.out.println(format.format(dTest));你觉得会输出什么?82.55?还是82.54?再试下这段代码:double dTest=82.535d; DecimalFo