accept the radius of circle and calculate the area of circles
Answers
Answered by
2
Answer:
1.BEGIN
2.Accept the radius of the circle
3.Area of circle=22/7r^2
4.Display area of circle
5.END
Answered by
1
Answer:
This is a python script to calculate the area of the circle
download python 3.7.3 from the official website of python
Explanation:
#program for finding the area of a circle.
a=1
while a==1:
r=input("enter the length of the radius= ")
q=float(r)
s=3.14*float(r)*float(r)
x=round(s,2)
print( "area of the circle=",x)
mark brainlliest please................
Similar questions