it was easy, not hard to understand

This commit is contained in:
jfer
2026-02-06 11:13:08 -05:00
parent 999c994ffc
commit cf975d0f35
4 changed files with 12 additions and 1 deletions

View File

@@ -2,5 +2,8 @@
# --------------
# By MWC Contributors
pi = 3.141592653
print("This program will calculate the area of a circle.")
radius = float(input("What is the circle's radius? "))
circle_area = radius*radius*pi
print(circle_area)