在这里,我们将了解如何获取圆内的十边形面积。半径已给出。十边形的边是“a”。
众所周知,十边形的边长如下 -
#include <iostream> #include <cmath> using namespace std; float area(float r) { if (r < 0) //if r is negative it is invalid return -1; float area = (5 * pow(r, 2) * (3 - sqrt(5)) * (sqrt(5) + (2 * sqrt(5)))) / 4; return area; } int main() { float r = 8; cout << "Area : " << area(r); }
Area : 409.969
以上是圆内内接十边形的C程序的面积?的详细内容。更多信息请关注PHP中文网其他相关文章!