Computer Science, asked by vikalpShukla, 4 months ago

WAP to input the diameter of the circle and print the area and circumference of it​

Answers

Answered by indiantechsmith
3

Python Program :

d=float(input("Enter diameter : "))

r=d/2

area=(22*r*r)/7

crcm=(2*22*r)/7

print("Area :",area)

print("Circumference :",crcm)

Similar questions