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

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

红宝石 |有理 round()函数

round()是 Ruby 中的一个内置函数,以ndigits十进制数字的精度返回四舍五入到最接近的值的有理数。 ndigits 默认为 0。当 ndigits 为正数时返回有理数,否则返回整数。

示例 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