floor()是Ruby中的內置函數,返回小於或等於rat的最大數字,精度為n位十進製數字。 ndigits默認為0。當ndigits為正數時,它返回有理數,否則返回整數。
用法: rat.floor(ndigits)
參數:該函數接受單個參數
返回值:返回小於或等於rat的最大數字,精度為n位數字小數位
例子1:
# Ruby program for floor() method
# Initialize rational number
rat1 = Rational(-4, 3)
# Prints the rational number
puts rat1.floor()
輸出:
-2
例子2:
# Ruby program for floor() method
# Initialize rational number
rat1 = Rational('123.456')
# Prints the rational number
puts rat1.floor(1)
puts rat1.floor(-1)
輸出:
617/5 120
相關用法
- Ruby Rational quo()用法及代碼示例
- Ruby Rational abs()用法及代碼示例
- Ruby Rational negative?()用法及代碼示例
- Ruby Rational positive?()用法及代碼示例
- Ruby Rational to_s()用法及代碼示例
- Ruby Rational truncate()用法及代碼示例
- Ruby Rational denominator()用法及代碼示例
- Ruby Rational fdiv()用法及代碼示例
- Ruby Rational to_f()用法及代碼示例
- Ruby Rational to_i()用法及代碼示例
- Ruby Rational to_r()用法及代碼示例
- Ruby Rational rationalize()用法及代碼示例
- Ruby Rational round()用法及代碼示例
注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 Ruby | Rational floor() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。