×

Ruby Tutorial

Ruby Basics

Ruby Control Statements

Ruby Methods

Ruby Classes and Methods

Ruby Arrays

Ruby Sets

Ruby Strings

Ruby Classes & Objects

Ruby Hash

Ruby Tools

Ruby Functions

Ruby Built-in Functions

Misc.

Ruby Programs

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

Last Updated : December 15, 2025

Problem Solution

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.

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.

Ruby Basic Programs »


Advertisement
Advertisement


Comments and Discussions!

Load comments ↻


Advertisement
Advertisement
Advertisement

Copyright © 2025 www.includehelp.com. All rights reserved.