给定圆的半径r,求圆的面积。(结果需保留七位小数)
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)); //结果保留七位小数
sc.close();
}
}