Computer Science, asked by rafiloyola2276, 5 hours ago

Write a python program to print the area of a Circle.
(Area = 3.14*r *r).
The value of r will be input by the user. Answer pls

Answers

Answered by sakshimachhar1710
1

Answer:

import math

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

area = math.pi* r * r

print("%.2f" %area)

Similar questions