Skip to content
Related Articles
Open in App
Not now

Related Articles

Ruby | Rational / method

Improve Article
Save Article
  • Last Updated : 24 Jun, 2020
Improve Article
Save Article

The / is an inbuilt method in Ruby returns the rational number by performing division between two rational numbers.

Syntax: rat1 / rat2

Parameters: The function accepts no parameter

Return Value: It returns the rational number by performing division between two rational numbers.

Example 1:




# Ruby program for / method
  
# Initialize rational number 
rat1 = Rational(-2, 9)
rat2 = Rational(-9, 2)
  
# Prints the rational number
puts rat1 / rat2

Output:

4/81

Example 2:




# Ruby program for / method
  
# Initialize rational number 
rat1 = Rational(-2, 9)
  
# Prints the rational number
puts rat1 / 2.5

Output:

-0.08888888888888888
My Personal Notes arrow_drop_up
Related Articles

Start Your Coding Journey Now!