import math
a = float(input("please enter your a: "))
b = float(input("please enter your b: "))
c = float(input("please enter your c: "))
s = (a + b + c)/ 2
area = math.sqrt(s*(s-a) * (s -b) * (s-c))
print(area)
import math
a = float(input("please enter your a: "))
b = float(input("please enter your b: "))
c = float(input("please enter your c: "))
s = (a + b + c)/ 2
area = math.sqrt(s*(s-a) * (s -b) * (s-c))
print(area)
0 Kudos
Comments
Displaying 0 of 0 comments ( View all | Add Comment )