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