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


Ruby Float ceil()用法及代碼示例


ceil()是一個浮點類方法,它返回傳遞的浮點值的ceil值。

用法:float.ceil()

參數:浮點值,即獲得其ceil值
十進製數字(默認= 0)


返回:最小數字> =以n位小數點精度浮點。
對於-ve精度:整數,至少n位數字.abs尾隨零。
對於+ ve精度:浮點數。

範例1:

# Ruby code for ceil() method 
  
# declaring float values 
a = -56.23333333
  
# declaring float values 
b = 56.784
  
# declaring float values 
c = 222.8868686
  
# ceil value of a 
puts "ceil value of a:#{a.ceil}\n\n"
  
# ceil value of b 
puts "ceil value of b:#{b.ceil}\n\n"
  
# ceil value of c 
puts "ceil value of c:#{c.ceil}\n\n"

輸出:

ceil value of a:-56

ceil value of b:57

ceil value of c:223

範例2:

# Ruby code for ceil() method 
  
# declaring float values 
a = -0.78779393
  
# declaring float values 
b = -50006.784 + 34
  
# declaring float values 
c = 289 + 22.8868686
  
# ceil value of a 
puts "ceil value of a:#{a.ceil}\n\n"
  
# ceil value of b 
puts "ceil value of b:#{b.ceil}\n\n"
  
# ceil value of c 
puts "ceil value of c:#{c.ceil}\n\n"

輸出:

ceil value of a:0

ceil value of b:-49972

ceil value of c:312


相關用法


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