當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Ruby Rational round()用法及代碼示例


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


相關用法


注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 Ruby | Rational round() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。