Open In App

Ruby | Rational fdiv() function

Last Updated : 19 Mar, 2024
Improve
Improve
Like Article
Like
Save
Share
Report

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

 


Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads