This commit is contained in:
mbrown
2025-09-23 09:36:07 -04:00
parent ec1e92e631
commit 3e9c2e189b
3 changed files with 13 additions and 2 deletions

View File

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