×

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 find the LCM using library function

Last Updated : December 15, 2025

Problem Solution

In this program, we will read two integer variables from the user. Then we will find the Lowest Common Multiple using the lcm() function.

Program/Source Code

The source code to find the LCM using the library function is given below. The given program is compiled and executed successfully.

# Ruby program to find the LCM 
# using library function

print "Enter number1: ";
num1 = gets.chomp.to_i;  

print "Enter number2: ";
num2 = gets.chomp.to_i;  

result = num1.lcm(num2);

print "Lowest Common Multiple: ",result;

Output

Enter number1: 20
Enter number2: 15
Lowest Common Multiple: 60

Explanation

In the above program, we read two integer variables from the user using gets.chomp.to_i. Then we got the Lowest Common Multiple using library function lcm() and assigned the LCM to the result variable. After that, we printed the result variable.

Ruby Basic Programs »


Advertisement
Advertisement


Comments and Discussions!

Load comments ↻


Advertisement
Advertisement
Advertisement

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