Circle

subhamsingh · February 28, 2023
print("Enter the Radius of Circle: ")
r = float(input())
a = 3*3.14*r*r
print("\nArea = ", a)
Output

Comments

Please sign up or log in to contribute to the discussion.