Home »
Ruby Tutorial »
Ruby Programs
Ruby program to calculate the base 10 logarithm of the given value
Last Updated : December 15, 2025
Problem Solution
In this program, we will read an integer number from the user using gets.chomp.to_i. Then we will calculate the base 10 logarithm of a given number using the Math.log10() function.
Program/Source Code
The source code to calculate the base 10 logarithm of the given number is given below. The given program is compiled and executed successfully.
# Ruby program to calculate the
# base 10 logarithm of the given value
print "Enter value: ";
num = gets.chomp.to_i;
log10 = Math.log10(num);
print "Base 10 logarithm is: ",log10;
Output
Enter value: 216
Base 10 logarithm is: 2.3344537511509307
Explanation
In the above program, we read an integer number from the user using the gets.chomp.to_i and calculated the base 10 logarithm of input number using Math.log10() function printed the result.
Ruby Basic Programs »
Advertisement
Advertisement