Huoli365.net
# 輸入三角形的底 base = float(input(“請輸入三角形的底: “))
# 輸入三角形的高 height = float(input(“請輸入三角形的高: “))
# 計算三角形的面積 area = 0.5 * base * height
# 輸出結果 print(f”三角形的面積是: {area:.2f}”)