红宝石 |有理 round()函数
round()是 Ruby 中的一个内置函数,以ndigits十进制数字的精度返回四舍五入到最接近的值的有理数。 ndigits 默认为 0。当 ndigits 为正数时返回有理数,否则返回整数。
Syntax: rational.round(ndigits)
Parameters: The function accepts a single parameter
Return Value: It returns rational rounded to the nearest value with a precision of ndigits decimal digits.
示例 1 :
# Ruby program for round() method
# Initialize rational number
rat1 = Rational(-4, 3)
# Prints the rational number
puts rat1.round()
输出:
-1
示例 2 :
# Ruby program for round() method
# Initialize rational number
rat1 = Rational('123.456')
# Prints the rational number
puts rat1.round(1)
puts rat1.round(-1)
输出:
247/2
120