Ruby中的ceil函數返回小於或等於int的最小數字,精度為n位十進製數字。默認值被認為是0。如果給定的精度為負,則返回值是一個至少有ndigits.abs尾隨零的整數。當n位數字為正數時,它將返回self。
用法:(number).floor(ndigits)
參數:該函數采用要返回其下限值的整數和一個指定要返回的精度的單個參數ndigits。
返回值:該函數返回小於或等於它的最小整數。
範例1:
# Ruby program of Integer floor() function
# Initializing the numbers
num1 = 10
num2 = 17
num3 = 17.5
num4 = 21.5
# Prints the floor value
puts num1.floor
puts num2.floor(2)
puts num3.floor(-1)
puts num4.floor(0)
輸出:
10 17.0 10 21
範例2:
# Ruby program of Integer floor() function
# Initializing the numbers
num1 = 13
num2 = -90
num3 = 90
num4 = 81.7
# Prints the floor value
puts num1.floor
puts num2.floor(2)
puts num3.floor(-1)
puts num4.floor(0)
輸出:
13 -90 90 81
相關用法
- Ruby Rational floor()用法及代碼示例
- Ruby Numeric floor()用法及代碼示例
- Ruby Integer integer?用法及代碼示例
- Ruby Integer div()用法及代碼示例
- Ruby Integer even?用法及代碼示例
- Ruby Integer lcm()用法及代碼示例
- Ruby Integer gcd()用法及代碼示例
- Ruby Integer next用法及代碼示例
- Ruby Integer abs()用法及代碼示例
- Scala Integer -用法及代碼示例
- Ruby Integer chr用法及代碼示例
- Ruby Integer odd?用法及代碼示例
注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 Ruby Integer floor() function with example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。