Computer Science, asked by vijayamohan67, 5 months ago

Write a program to find the area and circumference of a circle. [Area = 3.14*r*r, circumference = 2*3.14*r]

Answers

Answered by peeyush321kumar
2

I am assuming that you are asking for writing the program in python

r=int(input('Enter the radius of the circle: '))

area= 3.14*r*r

circumference = 2*3.14*r

print('Area:',area)

print('Circumference' , circumference )

Similar questions