ホームページ  >  記事  >  バックエンド開発  >  正方形内の最大のレイリー三角形は何ですか?

正方形内の最大のレイリー三角形は何ですか?

WBOY
WBOY転載
2023-09-13 22:49:01942ブラウズ

ここでは、正方形に内接する最大のルーロー三角形の面積を見てみましょう。正方形の辺は「a」です。ルーローの三角形の高さは h です。

正方形内の最大のレイリー三角形は何ですか?

ルーロー三角形の高さは a と同じです。したがって、a=hです。したがって、ルーロー三角形の面積は -

正方形内の最大のレイリー三角形は何ですか?

Example

#include <iostream>
#include <cmath>
using namespace std;
float areaReuleaux(float a) { //side of square is a
   if (a < 0) //if a is negative it is invalid
      return -1;
   float area = ((3.1415 - sqrt(3)) * (a) * (a))/2;
   return area;
}
int main() {
   float side = 8;
   cout << "Area of Reuleaux Triangle: " << areaReuleaux(side);
}

Output

Area of Reuleaux Triangle: 45.1024
となります。

以上が正方形内の最大のレイリー三角形は何ですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

声明:
この記事はtutorialspoint.comで複製されています。侵害がある場合は、admin@php.cn までご連絡ください。