這篇文章主要介紹python如何實(shí)現(xiàn)三角形判定,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!
python三角形判定怎么做?下面給大家?guī)砭唧w的例子:
例子:
a = int(input("The length of the side a = ")) b = int(input("The length of the side b = ")) c = int(input("The length of the side c = ")) if a != b and b != c and a != c: print("This is Scalene") #不規(guī)則三角形 elif a == b and b == c: print("This is an Equilateral") #等邊三角形 else: print("This is Isosceles") #等腰三角形
結(jié)果如下:
The length of the side a = 3 The length of the side b = 4 The length of the side c = 5 This is Scalene The length of the side a = 3 The length of the side b = 3 The length of the side c = 3 This is an Equilateral The length of the side a = 3 The length of the side b = 3 The length of the side c = 4 This is Isosceles
以上是python如何實(shí)現(xiàn)三角形判定的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!
本文標(biāo)題:python如何實(shí)現(xiàn)三角形判定-創(chuàng)新互聯(lián)
文章分享:http://www.rwnh.cn/article26/csjdjg.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供定制開發(fā)、品牌網(wǎng)站建設(shè)、全網(wǎng)營銷推廣、企業(yè)網(wǎng)站制作、建站公司、網(wǎng)站排名
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容