floor()是Ruby中的內置方法,返回的數字小於或等於給定數字,精度為小數點後的給定數字位數。如果未提供數字位數,則默認值為零。
用法: num.floor(ndigits)
參數:該函數需要一個數字和一個n位數字,以指定要四舍五入的位數。如果未給出ndigits,則默認值為零。
返回值:它返回返回一個布爾值。
例子1:
# Ruby program for floor()
# method in Numeric
# Initialize a number
num1 = -16.7834
num2 = -16.78324
num3 = 16.873
# Prints floor
puts num1.floor(1)
puts num2.floor()
puts num3.floor()
輸出:
-16.8 -17 16
例子2:
# Ruby program for floor()
# method in Numeric
# Initialize a number
num1 = 12.32
num2 = -1321.998321
num3 = -12.2321
# Prints floor
puts num1.floor(1)
puts num2.floor(2)
puts num3.floor(3)
輸出:
12.3 -1322.0 -12.233
相關用法
- Ruby Integer floor()用法及代碼示例
- Ruby Rational floor()用法及代碼示例
- Ruby Numeric quo()用法及代碼示例
- Ruby Numeric eql?()用法及代碼示例
- Ruby Numeric dup()用法及代碼示例
- Ruby Numeric div()用法及代碼示例
- Ruby Numeric zero?用法及代碼示例
- Ruby Numeric arg()用法及代碼示例
- Ruby Numeric abs()用法及代碼示例
- Ruby Numeric i()用法及代碼示例
- Ruby Numeric conj()用法及代碼示例
- Ruby Numeric fdiv()用法及代碼示例
- Ruby Numeric conjugate()用法及代碼示例
- Ruby Numeric integer()用法及代碼示例
- Ruby Numeric coerce()用法及代碼示例
注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 Ruby | Numeric floor() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。