Home »
Ruby »
Ruby Programs
Ruby program to find the value of e^value using exp() function
Ruby Example: Write a program to find the value of e^value using exp() function.
Submitted by Nidhi, on December 07, 2021
Problem Solution:
In this program, we will read a number from the user using gets.chomp.to_f. Then we will find the value of e^value using the exp() function.
Program/Source Code:
The source code to find the value of e^value using the exp() function is given below. The given program is compiled and executed successfully.
# Ruby program to find the value of
# e^value using exp() function
print "Enter number: ";
num = gets.chomp.to_f;
result = Math.exp(num);
print "Result: ",result;
Output:
Enter number: -0.9
Result: 0.4065696597405991
Explanation:
In the above program, we read a floating-point number from the user using gets.chomp.to_f and found the value of e^value using exp() function and printed the result.
Ruby Basic Programs »