Q:

Ruby program to find the fraction and exponent of a number

belongs to collection: Ruby Basic Programs

0

In this program, we will read an integer number from the user using gets.chomp.to_i. Then we will get the fraction and exponent of a given number using the Math.frexp() 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 fraction and exponent of a number is given below. The given program is compiled and executed successfully.

# Ruby program to find the 
# fraction and exponent of a number

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

fraction, exponent = Math.frexp(num); 

print "Fraction: ",fraction,"\n";
print "Exponent: ",exponent;

Output:

Enter Number: 456
Fraction: 0.890625
Exponent: 9

Explanation:

In the above program, we read an integer number from the user using gets.chomp.to_i and found the fraction and exponent of the given number using Math.frexp() 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 calculate the value from the given... >>
<< Ruby program to calculate the logarithm gamma of t...