Computer Science, asked by vaishnavirastogi4913, 8 months ago

Write a program to calculate and print the area
and circumference of
a circle. In python (please don't give wrong answers, or else I will report)​

Answers

Answered by kookiesandmilk
0

Answer:

Circle

c=float(input("Enter radius"))

cr=3.14*c*c

print("area of circle is",cr)

Similar questions