這裡我們將看到一個內接於一個圓的正方形的面積,以及該圓內接於一個六邊形的面積。正方形的邊是「a」。圓的半徑為“r”,六邊形的邊為“A”。圖表如下圖所示。
我們知道六邊形內接圓的半徑是 -
# #圓的半徑也是正方形對角線的一半。所以 -##然後我們可以說 -
##那麼面積就是 -
##範例
#include <iostream> #include <cmath> using namespace std; float area(float A) { //A is the side of the hexagon if (A < 0) //if the value is negative it is invalid return -1; float area = (A*A) * float(3.0/2.0); return area; } int main() { float side = 5; cout << "Area is: " << area(side); }輸出
Area is: 37.5
以上是在C程式中,將下列內容翻譯為中文:正六邊形內切的圓中內切的正方形的面積是多少?的詳細內容。更多資訊請關注PHP中文網其他相關文章!