Home »
Ruby »
Ruby Programs
Ruby program to perform integer division of two numbers using div() function
Ruby Example: Write a program to perform integer division of two numbers using the div() function.
Submitted by Nidhi, on December 13, 2021
Problem Solution:
In this program, we will read two integer numbers from the user and perform the integer division using the div() library function.
Program/Source Code:
The source code to perform integer division of two numbers using the div() 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: 21
Enter number1: 3
Division is: 7
Explanation:
In the above program, we read two integer numbers using gets.chomp.to_i. Then we calculated the integer division using the div() library function and printed the result.
Ruby Basic Programs »