這裡我們將了解如何取得直角三角形的外接圓面積。三角形的斜邊形成圓的直徑。因此,如果斜邊為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中文網其他相關文章!