在這裡我們將看到等邊三角形內切圓的面積。三角形的邊是「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中文網其他相關文章!