i calculated the circle of the area

This commit is contained in:
rrahmany
2025-09-26 09:27:31 -04:00
parent 98c1431835
commit d5003b655f

View File

@@ -4,3 +4,5 @@
print("This program will calculate the area of a circle.")
radius = float(input("What is the circle's radius? "))
area = 3.14*radius*radius
print(area)