ここでは、直角三角形の外接円の面積を求める方法を学びます。三角形の斜辺が円の直径を形成します。したがって、斜辺が h の場合、半径は h/2
となるため、面積は -
#include <iostream> #include <cmath> using namespace std; float area(float h) { if (h < 0) //if h is negative it is invalid return -1; float area = 3.1415 * (h/2) * (h/2); return area; } int main() { float h = 8; cout << "Area : " << area(h); }
Area : 50.264
以上がC プログラムで、以下を中国語に翻訳します。 直角三角形の外接円の面積の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。