roberthsu2003 / __2024_05_05_sunday__

AI 人工智慧開發入門_python
29 stars 2 forks source link

梯形面積 #2

Closed stanley940729 closed 2 months ago

stanley940729 commented 2 months ago

程式


#梯形面積,(上底+下底) * 高 / 2

top = 4.5
bottom = 8.0
height = 3.5

area = (top + bottom) * height / 2
print("梯形面積:",area)