java 保留两位小数点
发布网友
发布时间:2022-04-20 23:01
我来回答
共4个回答
热心网友
时间:2023-10-01 19:04
var f : float;
str : string;
begin
f := 1.123;
str := FormatFloat('0.00', f);
end;
str的结果是1.12
热心网友
时间:2023-10-01 19:05
float f = 1.234567f;
System.out.printf("%.2f\n", f);
热心网友
时间:2023-10-01 19:05
public double tofloat(double value) {
String retValue = null;
DecimalFormat df = new DecimalFormat();
df.setMinimumFractionDigits(2);
df.setMaximumFractionDigits(2);
retValue = df.format(value);
retValue = retValue.replaceAll(",", "");
return Double.parseDouble(retValue);
}
热心网友
时间:2023-10-01 19:06
字符串截取···