Open In App

Ruby | Float class + value

Float#+() : +() is a Float class method in Ruby which return sum of two Float numbers.

Syntax:  Float.+()

Parameter:  Float values

Return:  Sum of the two Float values

Code #1 : Example for +() method






# Ruby code for Float.+() method
  
# declaring float value
a = -100.7 - 10.4
  
# declaring float value
b = -100 * 2000.0
  
# declaring float value
c = -(22 + 7.1) * 4
  
# ADDING TWO FLOAT VALUES
puts "Float a + b : #{a+b}\n\n"
  
puts "Float b + c : #{b+c}\n\n"
  
puts "Float a + c : #{c+a}\n\n"

Output :

Float a + b : -200111.1

Float b + c : -200116.4

Float a + c : -227.5

Code #2 : Example for +() method






# Ruby code for Float.+() method
  
# declaring float value
a = -56.23333333
  
# declaring float value
b = 10000.0
  
# declaring float value
c = -(22 + 7.1)
  
# ADDING TWO FLOAT VALUES
puts "Float a + b : #{a+b}\n\n"
  
puts "Float b + c : #{b+c}\n\n"
  
puts "Float a + c : #{c+a}\n\n"    

Output :

Float a + b : 9943.76666667

Float b + c : 9970.9

Float a + c : -85.33333333

Article Tags :