Q:

Ruby program to calculate the value from the given fraction and exponent

belongs to collection: Ruby Basic Programs

0

In this program, we will read the fraction and exponent from the user. Then we will get the value of fraction and exponent using Math.idexp() 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 find the value of fraction and exponent is given below. The given program is compiled and executed successfully.

# Ruby program to find the 
# value of fraction and exponent

print "Enter fraction: ";
fraction = gets.chomp.to_f;  

print "Enter exponent: ";
exponent = gets.chomp.to_i;  

value = Math.ldexp(fraction, exponent);
print "Value: ",value;

Output:

Enter fraction: 0.890625
Enter exponent: 9
Value: 456.0

Explanation:

In the above program, we read fraction and exponent from the user and found the value of fraction and exponent using the Math.idexp() function and 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 find the hypotenuse of a right-ang... >>
<< Ruby program to find the fraction and exponent of ...