ここでは、正三角形に内接する円の面積を見てみましょう。三角形の辺は「a」です。
正三角形の面積-
三角形の半周長は-
したがって、円の半径は -
#include <iostream> #include <cmath> using namespace std; float area(float a) { if (a < 0 ) //if the value is negative it is invalid return -1; float area = 3.1415 * (a/(2*sqrt(3))) * (a/(2*sqrt(3))); return area; } int main() { float a = 4; cout << "Area is: " << area(a); }
Area is: 4.18867# となります。 ##
以上がCプログラムで正三角形の内接円の面積を計算しますの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。