Computer Science, asked by shaurya203, 3 months ago

Write a program in python to find the area of circle where radius is entered by user. Note- Area of circle =pie* radius*radius. Use the value of pie as 3.14​

Answers

Answered by atrs7391
0

r = float(input("Enter the radius of the circle: "))

print("Area of the circle =", 3.14 * (r * r))

Similar questions