首頁  >  文章  >  後端開發  >  在C程式中,將等邊三角形內切圓的面積計算出來

在C程式中,將等邊三角形內切圓的面積計算出來

王林
王林轉載
2023-09-01 18:25:02652瀏覽

在這裡我們將看到等邊三角形內切圓的面積。三角形的邊是「a」。

在C程式中,將等邊三角形內切圓的面積計算出來

等邊三角形的面積-

在C程式中,將等邊三角形內切圓的面積計算出來

#三角形的半週長是-

在C程式中,將等邊三角形內切圓的面積計算出來

#所以圓的半徑是-

在C程式中,將等邊三角形內切圓的面積計算出來

範例

#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中文網其他相關文章!

陳述:
本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除