import java.io.IOException;
import java.util.Scanner;
class Main{
public static void main(String args[]) throws IOException{
try (Scanner sc = new Scanner(System.in)) {
int a= sc.nextInt();
System.out.println(String.format("%.6f", Math.PI *a*a));
System.out.println(String.format("%.6f", a*a*2.0));
}
}
}
'컴공 공부 > 백준' 카테고리의 다른 글
[백준 알고리즘] 10872번 팩토리얼 C언어 (0) | 2021.01.29 |
---|---|
[백준 알고리즘] 3053번 택시기하학 C언어 (0) | 2021.01.29 |
[백준 알고리즘] 4153번 직각삼각형 자바 (0) | 2021.01.07 |
[백준 알고리즘] 4153번 직각삼각형 C언어 (0) | 2021.01.07 |
[백준 알고리즘] 3009번 네번째 점 C언어 (0) | 2021.01.07 |