python小白求解 20分
查看原帖
python小白求解 20分
665914
jleesun楼主2022/1/21 12:24

import math

a,b,c = map(int,input().split())

p = 1/2*(a+b+c)

s = math.sqrt(p*(p-a)(p-b)(p-c))

print(float(s))

大佬求解

2022/1/21 12:24
加载中...