Math, asked by bhuvanasaisagarika, 5 months ago

write the python program that accepts radius of the circle and prints the area of the circle.
if the radius of the circle is R area of the circle =22/7*r*r​

Answers

Answered by dakshsingh24
0

Step-by-step explanation:

Hope this will help you.........

Attachments:
Answered by atrs7391
1

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

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

Similar questions