红宝石 |有理 floor()函数
floor()是 Ruby 中的一个内置函数,它返回小于或等于rat的最大数字,精度为ndigits十进制数字。 ndigits 默认为 0。当ndigits为正数时返回有理数,否则返回整数。
Syntax: rat.floor(ndigits)
Parameters: The function accepts a single parameter
Return Value: It returns the largest number less than or equal to rat with a precision of ndigits decimal digits
示例 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