[JAVA] 小數點後兩位

  • 952
  • 0
  • 2014-12-29

摘要:[JAVA] 小數點後兩位

double x = 12.654124;
DecimalFormat df = new DecimalFormat("#.##");
String s=df.format(x);   
System.out.println(s);