write a program in Q Basic to calculate the area and circumference of a circle of the radius 14 cm
hint: area of a circle =22/7r2 , circumference = 2*22/7*r
Answers
Answered by
5
Answer:
r=int(input("Enter radius: "))
area=22*r*r/7
print("Area = "area)
circumference=2*22*r/7
print("Circumference = ", circumference)
Similar questions