在這裡,我們將看到能夠內切於等邊三角形的最大正方形的面積。三角形的邊長為'a',正方形的邊長為x。
三角形的邊長'a'為−
#所以x為−
#include <iostream> #include <cmath> using namespace std; float areaSquare(float a) { //a is side of triangle if (a < 0 ) //if a is negative, then this is invalid return -1; float area = a / (1 + 2/sqrt(3)); return area; } int main() { float a = 7; cout << "Area of Rectangle: " << areaSquare(a); }
Area of Rectangle: 3.24871
以上是可以在等邊三角形內切的最大正方形是多大?的詳細內容。更多資訊請關注PHP中文網其他相關文章!