保留小数点位数的方法

eg.保留七位小数点(简概代码)

import java.text.DecimalFormat;

double s=r*r;

DecimalFormat df=new DecimalFormat("#.0000000");

System.out.println(df.format(s));

posted @ 2019-03-05 15:20  放养  阅读(348)  评论(0编辑  收藏  举报