Computer >> 컴퓨터 >  >> 프로그램 작성 >> C++

C++에서 정오각형의 대각선?

<시간/>

정오각형의 대각선 길이를 구하려면 한 변의 값을 (1+√5)변/2 =(1+2.24)변/2에 넣습니다.

예시

측면에서 정7각형 대각선을 얻기 위해 다음 구현을 살펴보겠습니다. -

#include <iostream>
using namespace std;
int main(){
   float side = 5;
   if (side < 0)
      return -1;
   float diagonal = (1+2.24) *(side/2);
   cout << "The diagonal of the regular pentagon = "<<diagonal<< endl;
   return 0;
}

출력

위의 코드는 다음 출력을 생성합니다 -

The diagonal of the regular pentagon = 8.1