Answers for "Herons rule python"

0

Herons rule python

import math
a = 3
b = 4
c = 5
s = (3 + 4 + 5)/2
F = math.sqrt(s*(s-a)*(s-b)*(s-c))
print(f"the area is {F}")
Posted by: Guest on September-18-2021

Python Answers by Framework

Browse Popular Code Answers by Language