Q.1 : Write a program to calculate the volume of a cylinder
Answer r=float (input(“Enter the radius of the cylinder “))
h=float (input(“Enter the height of the cylinder “))
v=3.142r*r*h
print(“Volume of the cylinder is “,v)
Staggering beauty. Com
Q.1 : Write a program to calculate the volume of a cylinder
Answer r=float (input(“Enter the radius of the cylinder “))
h=float (input(“Enter the height of the cylinder “))
v=3.142r*r*h
print(“Volume of the cylinder is “,v)
Staggering beauty. Com