1.4k views
5 votes
Write a program to get radius of circle and then print it's circumference​

1 Answer

4 votes


\tt r=(int(input(


\tt A=3.14*r**2


\tt C=2*3.14*r


\tt print(


\tt print (

Output:-


\tt Enter\: the\:value\:for\: radius: 2


\tt Area\:of\:the\:Circle:12.56


\tt Circumference\:of\:the\:Circle:12.56

User Joysn
by
5.4k points