Q:

Ruby program to calculate the logarithm of a given number based on a given base

belongs to collection: Ruby Basic Programs

0

In this program, we will read an integer number and base to calculate logarithm from the user using gets.chomp.to_i. Then we will calculate the logarithm of a given number based on the given base using the Math.log() function.

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 logarithm of a given number based on a given base is given below. The given program is compiled and executed successfully.

# Ruby program to calculate the logarithm 
# of a given number based on a given base

print "Enter Number: ";
num = gets.chomp.to_i;  

print "Enter Base: ";
base = gets.chomp.to_i;  


result = Math.log(num,base);

print "Result is: ",result;

Output:

Enter Number: 124
Enter Base: 2
Result is: 6.954196310386876

Explanation:

In the above program, we read an integer number and base for logarithm from the user using gets.chomp.to_i and calculated the logarithm based on the given base of input number using Math.log() function 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 calculate the logarithm gamma of t... >>
<< Ruby program to calculate the base 10 logarithm of...