roberthsu2003 / __2024_05_05_sunday__

AI 人工智慧開發入門_python
30 stars 3 forks source link

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

Closed aaaasssddfghjkl closed 5 months ago

aaaasssddfghjkl commented 5 months ago

top = 4.5 bottom = 8.0 height = 3.5

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