我有以下代码DecimalFormat
。
import java.util.*;
import java.lang.*;
import java.text.*;
class Main
{
public static void main (String[] args) throws java.lang.Exception
{
double d = 50.12345;
DecimalFormat df = new DecimalFormat("#.##");
System.out.println(df.format(d));
d = 50.0;
df = new DecimalFormat("#.##");
System.out.println(df.format(d));
d = (double) (1*1.000/Integer.parseInt(2+"")/1.000*100);
df = new DecimalFormat("#.##");
System.out.print(df.format(d));
}
}
这给了我如下输出。
50.12
50
50
我面临的问题是第二个数字。我想将其打印为 50.00。
知道我该怎么做吗?