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
0
Answer:
Circle
c=float(input("Enter radius"))
cr=3.14*c*c
print("area of circle is",cr)
Similar questions