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
0
Step-by-step explanation:
Hope this will help you.........
Attachments:
Answered by
1
r = float(input("Enter the radius of the circle: "))
print("Area of the circle =", 3.14 * (r * r))
Similar questions