用Python用海倫公式計算三角形的面積

#用海倫公式計算三角形的面積 one_length = float(input(「請輸入三角形的第一邊長:」)) two_length = float(input(「請輸入三角形的第二邊長:」)) three_length = float(input(「請輸入三角形的第三邊長:」)) #計算三角形的周長 s = (one_length + two_length +three_length) / 2
相關文章
相關標籤/搜索