Horje
Ruby Float fdiv() method with example

Float fdiv() is a float class method which return a division value of the form p/q.

Syntax: float.fdiv()

Parameter: values to divide – p and q

Return: Division value – Quotient

Example #1:




# Ruby program for fdiv() method
  
# Initializing value
a = 2.0.numerator()
  
# returning machine dependent result
puts "numerator : #{a}\n\n"
  
# using as a numerator
puts "Division int/float : #{a.fdiv(4)}\n\n"
puts "Division float/float : #{a.fdiv(4.0)}\n\n"

Output :

numerator : 2

Division int/float : 0.5

Division float/float : 0.5

Example #2:




# Ruby program for fdiv() method
  
# Initializing value
a = 0.numerator()
  
# Printing result
puts "numerator : #{a}\n\n"
puts "Division int/float : #{a.fdiv(4)}\n\n"
puts "Division float/float : #{a.fdiv(4.0)}\n\n"

Output :

numerator : 0

Division int/float : 0.0

Division float/float : 0.0




Reffered: https://www.geeksforgeeks.org


Ruby

Related
Ruby Float magnitude() method with example Ruby Float magnitude() method with example
Ruby Float modulo() method with example Ruby Float modulo() method with example
Ruby Float nan?() method with example Ruby Float nan?() method with example
Ruby Float next_float() method with example Ruby Float next_float() method with example
Ruby Float prev_float() method with example Ruby Float prev_float() method with example

Type:
Geek
Category:
Coding
Sub Category:
Tutorial
Uploaded by:
Admin
Views:
7