Ruby Float positive() 方法与示例
Float positive() 是一个浮点类方法,用于检查浮点值是否为正。
Syntax: float.positive()
Parameter: float value which is to be checked
Return: Boolean value return true – if value is positive or return false – if value is negative
示例 #1:
# Ruby program for positive() method
# Initialing value
a = -100.7 - 10.4
b = -100 * 2000.0
c = (22 + 7.1) * 4
# Printing result
puts "a is positive : #{a.positive?}\n\n"
puts "b is positive : #{b.positive?}\n\n"
puts "c is positive : #{c.positive?}\n\n"
输出 :
a is positive : false
b is positive : false
c is positive : true
示例 #2:
# Ruby code for positive() method
# Initializing value
a = -56.23333333
b = 10000.0
c = -(22 + 7.1)
# Printing result
puts "a is positive : #{a.positive?}\n\n"
puts "b is positive : #{b.positive?}\n\n"
puts "c is positive : #{c.positive?}\n\n"
输出 :
a is positive : false
b is positive : true
c is positive : false