Open In App

Ruby Float negative() method with example

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

Float negative() is a float class method which checks whether the float value is negative.

Syntax: float.negative()

Parameter: float value which is to be checked

Return: Boolean value return false – if value is positive and return true – if value is negative

Example #1:




# Ruby code for negative() method
  
# Initializing value
a = -100.7 - 10.4
b = -100 * 2000.0
c = (22 + 7.1) * 4
  
# Printing result
puts "a is negative : #{a.negative?}\n\n"
puts "b is negative : #{b.negative?}\n\n"
puts "c is negative : #{c.negative?}\n\n"


Output :

a is negative : true

b is negative : true

c is negative : false

Example #2:




# Ruby code for negative() method
  
# Initializing value
a = -56.23333333
b = 10000.0
c = -(22 + 7.1)
  
# Printing Result
puts "a is negative : #{a.negative?}\n\n"
puts "b is negative : #{b.negative?}\n\n"
puts "c is negative : #{c.negative?}\n\n"


Output :

a is negative : true

b is negative : false

c is negative : true

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

Similar Reads