need to adjust function of recangle function

Checkpoint 2----------------------------------------------------------------
This commit is contained in:
jcaley
2025-09-24 10:11:53 -04:00
parent 5425a2a862
commit b731bf0fa1
4 changed files with 26 additions and 3 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)