BC34 计算三角形的周长和面积

思路:

step1:输入三边;
step2:求出周长;
step3:利用海伦公式,求出面积;

alt

step4:格式化输出打印;

代码如下:

a,b,c = list(map(int,input().split()))
m = a + b + c + 0.000001
p = 0.5*(a + b + c)
n = (p*(p-a)*(p-b)*(p-c))**0.5+0.000001
print('circumference={:.2f} area={:.2f}'.format(m,n))