在這裡,我們將看到一個正方形的面積內接於一個圓,並且該圓內接於一個等邊三角形。正方形的邊是「a」。圓的半徑為“r”,六邊形的邊為“A”。圖表如下圖所示。
我們知道等邊三角形的內接圓的半徑就是三角形的內半徑。所以值為-
所以正方形的對角線是-
所以正方形的面積是-
#include <iostream> #include <cmath> using namespace std; float area(float A) { //A is the side of the triangle if (A < 0) //if the value is negative it is invalid return -1; float d = A / sqrt(3); float area = 0.5*d*d; return area; } int main() { float side = 10; cout << "Area is: " << area(side); }
Area is: 16.6667
以上是在C程式中,將以下內容翻譯為中文:正方形內接於一個內切於等邊三角形的圓的面積?的詳細內容。更多資訊請關注PHP中文網其他相關文章!