eg.保留七位小数点(简概代码)
import java.text.DecimalFormat;
double s=r*r;
DecimalFormat df=new DecimalFormat("#.0000000");
System.out.println(df.format(s));