Q:

Ruby program to calculate the perimeter of the circle

belongs to collection: Ruby Basic Programs

0

In this program, we will read the radius from the user and calculate the perimeter of the circle 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 perimeter of the circle is given below. The given program is compiled and executed successfully.

# Ruby program to calculate the 
# perimeter of the circle

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

perimeter = 2* 3.14 * radius;

print "Perimeter of circle: ",perimeter;

Output:

Enter radius: 6
Perimeter of circle: 37.68

Explanation:

In the above program, we read the radius from the user and calculated the perimeter of the circle. 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 multiply two numbers using the plu... >>
<< Ruby program to find the area of the circle...