Swift编程计算五边形面积


本教程将讨论如何编写Swift程序来计算五边形的面积。

五边形是一个二维图形,有5条边。它也包含五个内角,其和为540度。它也被称为五边形。五边形五条边所包围的总空间称为五边形的面积。


公式

以下是五边形面积的公式

Area = 1/4(sqrt(5(5+2√5))q2)

下面是相同的演示 -

输入

假设我们的给定输入为 -

side = 6

输出

期望输出为 -

Area of the pentagon= 61.93718642120281

算法

以下是算法 -

步骤1 - 创建一个具有返回值的函数。

步骤2 - 使用以下公式查找五边形的面积

return (sqrt(5*(5+2*sqrt(5))) * q * q)/4

步骤3 - 调用函数并将边作为参数传递给函数。

步骤4 - 打印输出。

示例

以下程序演示如何计算五边形的面积。

import Foundation
import Glibc

// Creating a function to find the area of pentagon
func pentagonArea(q:Double) -> Double{
   return (sqrt(5*(5+2*sqrt(5))) * q * q)/4
}
var num = 10.0
print("Length of the side is", num)
print("Area of the pentagon:", pentagonArea(q:num))

输出

Length of the side is 10.0
Area of the pentagon: 172.0477400588967

在这里,在上面的程序中,我们创建了一个函数,它使用以下公式返回五边形的面积:

return (sqrt(5*(5+2*sqrt(5))) * q * q)/4

在这里,我们使用sqrt()函数来查找平方根。

更新于:2022年11月30日

177 次浏览

启动您的职业生涯

通过完成课程获得认证

开始学习
广告