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

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

<시간/>

정육각형은 6개의 정삼각형으로 구성되어 있으므로 정육각형의 대각선은 2*변이 됩니다.

예시

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

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

출력

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

The diagonal of the hexagon = 24