三角形面積

知道三邊利用海倫公式spa

海倫公式:√[p(p-a)(p-b)(p-c) ]其中p=1/2(a+b+c)
s=1/2的周長*內切圓半徑code

a = float(input('輸入三角形第一邊長: '))
b = float(input('輸入三角形第二邊長: '))
c = float(input('輸入三角形第三邊長: '))
 
# 計算半周長
s = (a + b + c) / 2
 
# 計算面積
area = (s*(s-a)*(s-b)*(s-c)) ** 0.5
print('三角形面積爲 %0.2f' %area)
相關文章
相關標籤/搜索