Open In App
Related Articles

Ruby | Rational fdiv() function

Improve Article
Improve
Save Article
Save
Like Article
Like

The fdiv() is an inbuilt function in Ruby returns float by performing division.
 

Syntax: rat.fdiv(numeric)
Parameters: The function accepts a single parameter
Return Value: It returns float by performing division 
 

Example 1
 

Ruby




# Ruby program for fdiv() method
 
# Initialize rational number
rat1 = Rational(7, -3)
 
# Prints the rational number
puts rat1.fdiv(2)


Output
 

-1.1666666666666667

Example 2
 

Ruby




# Ruby program for fdiv() method
 
# Initialize rational number
rat1 = Rational(7)
 
# Prints the rational number
puts rat1.fdiv(2)


Output
 

3.5

 

Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out - check it out now!

Last Updated : 12 Jul, 2021
Like Article
Save Article
Previous
Next
Similar Reads