Open In App

Ruby | Numeric quo() function

The quo() is an inbuilt method in Ruby returns the most exact division, whether it be a float or a rational one.

Syntax: num.quo()



Parameters: The function needs a number which is to be checked.

Return Value: It returns the most exact division.



Example 1:




# Ruby program for quo()
# method in Numeric
  
# Initialize a number 
num1 = 10
num2 = 7
  
# Prints the quo
puts num1.quo(num2)

Output:

10/7

Example 2:




# Ruby program for quo()
# method in Numeric
  
# Initialize a number 
num1 = 10
num2 = 5
  
# Prints the quo
puts num1.quo(num2)

Output:

2/1
Article Tags :