This commit is contained in:
sean
2026-02-09 23:18:05 -05:00
parent 07e5b6b5d0
commit e18aef5ee2
5 changed files with 39 additions and 3 deletions

View File

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