Open In App

Ruby | Float class % value

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

Float#%() : %() is a Float class method in Ruby which return the modulo of two Float division.

Syntax:  Float.%()

Parameter:  Float values - dividend and divisor

Return:  Modulo / Remainder

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
  
# MODULO OF 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 : -111.10000000000001

Float b % c : -24.799999999990234

Float a % c : -5.299999999999997

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)
  
# MODULO OF 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 : -10.400000000000489

Float a % c : -29.1


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

Similar Reads