write a python program that accepets radius
of a circle and points its area.
Answers
Answered by
1
Answer:
print("Enter the radius of a circle:");
r = float(input());
ar = 3.14*r*r;
print(ar);
Answered by
0
r = float(input("Enter the radius of the circle: "))
print("Area of the circle =", 3.14 * (r * r))
Similar questions
Science,
4 months ago
English,
4 months ago
Math,
4 months ago
English,
8 months ago
Social Sciences,
8 months ago