判斷三角形的面積及型別(多重選擇)

萬里無雲便是我發表於2017-05-14

程式碼:

# -*- coding:utf-8 -*-
import math
a=input("請輸入a邊長:")
b=input("請輸入b邊長:")
c=input("請輸入c邊長:")
if a>b:
    t=a;a=b;b=t
if a>c:
    t=a;a=c;c=t
if b>c:
    t=b;b=c;c=t
if a+b>c and a+c>b and b+c>a:
    print "可以組成三角形"
if a==b and a==c:
    print "等邊三角形"
elif a == b or a == c or b==c:
    print "等腰三角形"
elif a**2+b**2==c**2:
    print "直角三角形"
else:
    print "普通三角形"


執行結果:


相關文章