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:
rat = Rational( 4 )
puts rat
|
Output:
4/1
Example 2:
rat = Rational( 4 , 5 )
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