Computer Science, asked by sagarkumar02012005, 4 months ago

Write a program that accepts radius of a circle and prints its area.in python

Answers

Answered by profdambaldor
1

Answer:

r = float(input("Radius : "))

area = math.pi* r * r

print("%.2f" %area)

Explanation:

Similar questions