Ruby 有理数 ceil()函数
ceil() 是Ruby中的一个内置函数,用于返回大于或等于 rat的 最小数字,其精度为小数点后第 ndigits 位。
语法 : rat.ceil(ndigits)
参数 :该函数接受一个数字 ndigits,它指定了要被舍弃的数字。如果没有给出 ndigits,则默认值为零。
返回值 : 它返回大于或等于 rat 的 最小数字,精度为 ndigits 。
例子 1 :
# Ruby program for ceil() method
# Initialize rational number
rat1 = Rational(-4, 3)
# Prints the rational number
puts rat1.ceil()
输出:
-1
例2 :
# Ruby program for ceil() method
# Initialize rational number
rat1 = Rational('123.456')
# Prints the rational number
puts rat1.ceil(1)
puts rat1.ceil(-1)
输出:
247/2
130