#06梯形面積計算function()

先列出梯形面積的公式

梯形面積 = ( 上底 + 下底 )x 高 / 2

梯形面積 func( )

func 梯形面積(top: Int,bottom: Int,height: Int){
let area = (( top + bottom ) * height / 2)
print (area)
}
梯形面積(top: 4,bottom: 8,height: 6)

top 為上底
bottom為下底
height 為高
area 為梯形面積

執行 梯形面積 func ( )

如要計算上底為4, 下底為8 , 高為6的梯形面積,
執行func( ) 時代入top: 4 , bottom: 8, height: 6

梯形面積(top: 4,bottom: 8,height: 6)

即可得到計算後的梯形面積為36

執行結果截圖畫面

梯形面積公式執行結果畫面

--

--