问题1:Java浮点数如何保留小数点后两位
方法1: double d = Math.random();String temp = String.format("%.2f",d);//返回值为String 方法2: double ...
方法1: double d = Math.random();String temp = String.format("%.2f",d);//返回值为String 方法2: double ...