Open In App
Related Articles

Ruby | Rational rational() function()

Improve Article
Improve
Save Article
Save
Like Article
Like

The Rational() is an inbuilt method in Ruby returns the rational number of the form a/b.

Syntax: Rational(num, den)

Parameters: The function accepts two parameters which represents numerator and denominator. By default, the denominator is 1.

Return Value: It returns the rational number of the form a/b.

Example 1:




# Ruby program for Rational()
  
# Initialize rational number 
rat = Rational(4)
  
# Prints the rational number
puts rat


Output:

4/1

Example 2:




# Ruby program for Rational()
  
# Initialize rational number 
rat = Rational(4, 5)
  
# Prints the rational number
puts rat


Output:

4/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 : 18 Dec, 2019
Like Article
Save Article
Previous
Next
Similar Reads