Open In App

Ruby Float quo() method with example

Last Updated : 07 Jan, 2020
Improve
Improve
Like Article
Like
Save
Share
Report

Float quo() is a float class method which return the quotient value of the division.

Syntax: float.quo()

Parameter: float values – dividend and divisor

Return: Quotient value of the division.

Example #1:




# Ruby code for quo() method
  
# Initializing value
a = 4.0
b = 2.0
   
# Printing result
puts "Division a/b : #{a.quo(b)}\n\n"
puts "Division b/a : #{b.quo(a)}\n\n"


Output :

Division a/b : 2.0

Division b/a : 0.5

Example #2:




# Ruby code for quo() method
  
# Initializing value
a = 0
b = 2.0
  
# Printing result
puts "Division a/b : #{a.quo(b)}\n\n"
puts "Division b/a : #{b.quo(a)}\n\n"


Output :

Division a/b : 0.0

Division b/a : Infinity

Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads