×

Ruby Tutorial

Ruby Basics

Ruby Control Statements

Ruby Methods

Ruby Classes and Methods

Ruby Arrays

Ruby Sets

Ruby Strings

Ruby Classes & Objects

Ruby Hash

Ruby Tools

Ruby Functions

Ruby Built-in Functions

Misc.

Ruby Programs

Ruby program to calculate the perimeter of the circle

Last Updated : December 15, 2025

Problem Solution

In this program, we will read the radius from the user and calculate the perimeter of the circle and print the result.

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.

Ruby Basic Programs »


Advertisement
Advertisement


Comments and Discussions!

Load comments ↻


Advertisement
Advertisement
Advertisement

Copyright © 2025 www.includehelp.com. All rights reserved.