Computer Science, asked by vimalk033, 8 months ago

write a python program that accepets radius
of a circle and points its area.​

Answers

Answered by sanjeevsitapur2
1

Answer:

print("Enter the radius of a circle:");

r = float(input());

ar = 3.14*r*r;

print(ar);

Answered by atrs7391
0

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

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

Similar questions