write a program to calculate the area and peramiters of a circle whose radius is entered by user
Answers
Answered by
5
For python
X=int(input(‘enter the radius of circle’))
Y=x**2*3.14#for area
Z=2*3.14*x# for perimeter
Print(‘area of circle is ‘, Y)
Print(‘perimeter of circle is’,Z)
Thanks
Plz mark as brainlist
X=int(input(‘enter the radius of circle’))
Y=x**2*3.14#for area
Z=2*3.14*x# for perimeter
Print(‘area of circle is ‘, Y)
Print(‘perimeter of circle is’,Z)
Thanks
Plz mark as brainlist
Answered by
0
Suppose the radius is 7.5
Please mark it as brainliest.
Attachments:
Similar questions