기하: 5각형의 넓이

less than 1 minute read

DESCRIPTION

오각형의 중심으로부터 정점까지의 거리 r을 입력받아 오각형의 넓이를 계산하는 프로그램을 작성하세요.

Write a program that prompts the user to enter the length from the center of a pentagon to a vertex and computes the area of the pentagon, as shown in the following figure.

where r is the length from the center of a pentagon to a vertex. Round up two digits after the decimal point.

INPUT

  • Line 1 : 실수 r (0~100)

OUTPUT

  • Line 1 : pentagon의 넓이 (소수점 둘째 자리로 반올림)

SAMPLE INPUT

5.5

SAMPLE OUTPUT

71.92

Categories: ,

Updated:

Comments