例题:求圆的面积
String.format("%.7f", s)的用法
import java.util.Scanner;
public class Main {
public static void main(String[] args){
Scanner sc= new Scanner(System.in);
int r=sc.nextInt();
double PI=3.14159265358979323; //圆周率
double s=PI*r*r; //面积
System.out.println(String.format("%.7f", s)); //结果保留七位小数
}
}
println() 输出后换行
print() 输出后不换行