方式一:保留两位小数
DecimalFormat df = new DecimalFormat("#.00"); double d1 = 1.23456 double d2 = 2.0;double d3 = 0.0; System.out.println(df.format(d1),df.format(d2),df.format(d3));
输出结果:
1.23 2.00 0.00
方式一:保留两位小数
DecimalFormat df = new DecimalFormat("#.00"); double d1 = 1.23456 double d2 = 2.0;double d3 = 0.0; System.out.println(df.format(d1),df.format(d2),df.format(d3));
输出结果:
1.23 2.00 0.00