📜  红宝石 |有理 floor()函数

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

红宝石 |有理 floor()函数

floor()是 Ruby 中的一个内置函数,它返回小于或等于rat的最大数字,精度为ndigits十进制数字。 ndigits 默认为 0。当ndigits为正数时返回有理数,否则返回整数。

示例 1

# Ruby program for floor() method
  
# Initialize rational number
rat1 = Rational(-4, 3)
  
# Prints the rational number
puts rat1.floor()

输出

-2

示例 2

# Ruby program for floor() method
  
# Initialize rational number
rat1 = Rational('123.456')
  
# Prints the rational number
puts rat1.floor(1)
puts rat1.floor(-1)

输出

617/5
120