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.
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.
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.
Output:
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