這篇文章主要介紹Python中如何求三角形的面積,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
天柱網(wǎng)站制作公司哪家好,找創(chuàng)新互聯(lián)建站!從網(wǎng)頁設計、網(wǎng)站建設、微信開發(fā)、APP開發(fā)、響應式網(wǎng)站等網(wǎng)站項目制作,到程序開發(fā),運營維護。創(chuàng)新互聯(lián)建站于2013年開始到現(xiàn)在10年的時間,我們擁有了豐富的建站經(jīng)驗和運維經(jīng)驗,來保證我們的工作的順利進行。專注于網(wǎng)站建設就選創(chuàng)新互聯(lián)建站。
方法一:普通面積公式法
import math a=float(input("請輸入三角形的邊長a: ")) b=float(input("請輸入三角形的邊長b: ")) c=float(input("請輸入三角形的邊長c: ")) d=(a+b+c)/2 area=math.sqrt(d*(d-a)*(d-b)*(d-c)); print(str.format("三角形的三邊分別是:a={0},b={1},c={2}",a,b,c)) print(str.format("三角形的面積={0}",area))
方法二:if循環(huán)法
while True: a = float(input('輸入三角形第一邊長:')) b = float(input('輸入三角形第二邊長: ')) c = float(input('輸入三角形第三邊長:')) if a + b > c and a + c > b and b + c > a: s = a * b * (1 - ((a ** 2 + b ** 2 - c ** 2) / (2 * a * b)) ** 2) ** 0.5 / 2 print('三角形的面積是:%0.2f' % s) break else: print('三角形不合法')
方法三:海倫公式法
import math a = float(input('依次輸入邊長:\n')) b = float(input()) c = float(input()) p = (a+b+c)/2 x = p*(p-a)*(p-b)*(p-c) while x<=0 : print('此三邊不構成三角形,請重新輸入') a = float(input('依次輸入邊長:\n')) b = float(input()) c = float(input()) p = (a+b+c)/2 x = p*(p-a)*(p-b)*(p-c) s = math.sqrt(x) print('周長:' + str(2*p)) print('面積:' + str(s))
以上是“Python中如何求三角形的面積”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關知識,歡迎關注創(chuàng)新互聯(lián)行業(yè)資訊頻道!