题解 | #计算三角形的周长和面积#
计算三角形的周长和面积
http://www.nowcoder.com/practice/109a44d649a142d483314e8a57e2c710
a,b,c=map(int,input().split(' ')) if a+b>c: p=(a+b+c)/2 print("circumference={:.2f} area={:.2f}".format(2p,pow(p(p-a)(p-b)(p-c),0.5)))
计算三角形的周长和面积
http://www.nowcoder.com/practice/109a44d649a142d483314e8a57e2c710
a,b,c=map(int,input().split(' ')) if a+b>c: p=(a+b+c)/2 print("circumference={:.2f} area={:.2f}".format(2p,pow(p(p-a)(p-b)(p-c),0.5)))
相关推荐