📜  红宝石 |有理正数?()函数

📅  最后修改于: 2022-05-13 01:54:28.085000             🧑  作者: Mango

红宝石 |有理正数?()函数

positive?()是 Ruby 中的一个内置函数,如果有理数大于零,则返回布尔值 true,否则返回 false

示例 1

# Ruby program for positive?() method
  
# Initialize rational number 
rat1 = Rational(-2, 9)
  
# Prints the boolean value
puts rat1.positive?()

输出

false

示例 2

# Ruby program for positive?() method
  
# Initialize rational number 
rat1 = Rational('1.23')
  
# Prints the boolean value
puts rat1.positive?()

输出

true