Open In App

Ruby | Float class * value

Improve
Improve
Like Article
Like
Save
Share
Report

Float#*() : *() is a Float class method in Ruby which return multiplicative value of two Float values.
 

Syntax:  Float.*()

Parameter:  Float values - two operands

Return:  Multiplicative value of Float values

Code #1 : Example for *() method
 

Ruby




# 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
 
# Multiplicative value of 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 : 22220000.0

Float b * c : 23280000.0

Float a * c : 12932.04

Code #2 : Example for *() method 
 

Ruby




# Ruby code for Float.*() method
 
# declaring float value
a = -56.23333333
 
# declaring float value
b = 10000.0
 
# declaring float value
c = -(22 + 7.1)
 
# Multiplicative value of 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 : -562333.3333

Float b * c : -291000.0

Float a * c : 1636.389999903

 



Last Updated : 11 Mar, 2022
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads