https://www.acmicpc.net/problem/3053
택시기하학 공식을 써줌으로 해결!
package solution;
import java.util.Scanner;
public class Bakjun_3053 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int A = sc.nextInt();
double result = A*A*3.1415926535897932384626433;
double result2= A*A*2;
System.out.println(result);
System.out.println(result2);
sc.close();
}
}
'IT_tech > 알고리즘' 카테고리의 다른 글
프로그래머스)탑-java (0) | 2020.07.06 |
---|---|
백준) 2523 별찍기13 - JAVA (0) | 2020.07.05 |
프로그래머스-전화번호 목록 (0) | 2020.07.01 |
백준) 5543 상근날드 -JAVA (0) | 2020.07.01 |
프로그래머스)-짝수와홀수 (0) | 2020.06.30 |