Q:

Ruby program to calculate the volume and area of the Cylinder

belongs to collection: Ruby Basic Programs

0

In this program, we will read the radius and height of the Cylinder from the user. Then we will calculate the volume and surface area of the Cylinder and print the result.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program/Source Code:

The source code to calculate the volume and area of the Cylinder is given below. The given program is compiled and executed successfully.

# Ruby program to calculate the
# volume and area of Cylinder

radius=0.0;
height=0.0;
volume=0.0;
area  =0.0;

print "Enter radius: ";
radius = gets.chomp.to_f;  

print "Enter height: ";
height = gets.chomp.to_f;  

volume = 3.14 * radius * radius * height;
area   = 2.0 * 3.14 * radius * (radius + height);
    
print "Volume of Cylinder is: ",volume;
print "\nArea of Cylinder is: ",area;

Output:

Enter radius: 6
Enter height: 2.34
Volume of Cylinder is: 264.51359999999994
Area of Cylinder is: 314.2512

Explanation:

In the above program, we created four variables radiusheightvolumearea those are initialized with 0.0. Then we read the radiusheight of the Cylinder from the user and calculated the surface area and volume of the Cylinder using the standard formula. After that, we printed the result.

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Ruby Basic Programs

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
Ruby program to calculate the volume, diagonal, an... >>
<< Ruby program to calculate the volume of Cube...