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


Ruby Integer ceil用法及代碼示例


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


相關用法


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