在這裡我們將了解如何使用對角線長度來取得一個六邊形的面積。六邊形的對角線長度為 d。
正六邊形的內角各為 120°。所有內角和為 720°。如果對角線為 d,則面積為 -
#include <iostream> #include <cmath> using namespace std; float area(float d) { if (d < 0) //if d is negative it is invalid return -1; float area = (3 * sqrt(3) * d*d)/8.0; return area; } int main() { float r = 10; cout << "Area : " << area(r); }
Area : 64.9519
以上是給定對角線長度的六邊形的C程式的面積是多少?的詳細內容。更多資訊請關注PHP中文網其他相關文章!