round()是Ruby中的內置函數,返回有理數舍入到最接近的值,精度為n位十進製數字。 ndigits默認為0。當ndigits為正數時,它返回有理數,否則返回整數。
用法: rational.round(ndigits)
參數:該函數接受單個參數
返回值:返回有理數舍入到最接近的值,精度為n位十進製數字。
例子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
相關用法
- Ruby Rational abs()用法及代碼示例
- Ruby Rational quo()用法及代碼示例
- Ruby Rational floor()用法及代碼示例
- Ruby Rational to_f()用法及代碼示例
- Ruby Rational to_i()用法及代碼示例
- Ruby Rational to_s()用法及代碼示例
- Ruby Rational to_r()用法及代碼示例
- Ruby Rational truncate()用法及代碼示例
- Ruby Rational denominator()用法及代碼示例
- Ruby Rational fdiv()用法及代碼示例
- Ruby Rational ceil()用法及代碼示例
- Ruby Rational numerator()用法及代碼示例
- Ruby Rational rationalize()用法及代碼示例
注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 Ruby | Rational round() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。