BigDecimal#ceil():ceil()是BigDecimal類方法,它返回傳遞的BigDecimal值的ceil值。
用法: BigDecimal.ceil()
參數:
-BigDecimal值,用於獲取其ceil值
-十進製數字(默認= 0)
返回:
-最小數字> =到BigDecimal,精度為n位小數點。
-對於-ve精度:整數,至少n位數字。abs尾隨零。
-對於+ ve精度:BigDecimaling點數。
代碼#1:ceil()方法示例
# Ruby code for ceil() method
# loading BigDecimal
require 'bigdecimal'
# declaring BigDecimal
a = 42.1**13
# declaring BigDecimal
b = -BigDecimal("10")
# declaring BigDecimal
c = -(22 ** 7.1) * 10
# 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:1305170490200643862528 ceil value of b:-10 ceil value of c:-33978252067
代碼2:ceil()方法示例
# Ruby code for ceil() method
# loading BigDecimal
require 'bigdecimal'
# declaring BigDecimal
a = 12**12 - 27
# declaring BigDecimal
b = BigDecimal('10')-(22 ** 7.1) ** 10
# declaring BigDecimal
c = BigDecimal('-3')
# 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:8916100448229
ceil value of b:-205121100730586399999999999999999999999999999999999999999999999999999999999999999999999999999990
ceil value of c:-3
相關用法
- Ruby BigDecimal div用法及代碼示例
- Ruby BigDecimal nan?用法及代碼示例
- Ruby BigDecimal dup用法及代碼示例
- Ruby BigDecimal eql?用法及代碼示例
- Ruby BigDecimal divmod用法及代碼示例
- Ruby BigDecimal hash用法及代碼示例
- Ruby BigDecimal coerce用法及代碼示例
- Ruby BigDecimal absolute用法及代碼示例
- Ruby BigDecimal infinite?用法及代碼示例
- Ruby BigDecimal finite?用法及代碼示例
- Ruby BigDecimal frac用法及代碼示例
- Ruby BigDecimal inspect用法及代碼示例
- Ruby BigDecimal modulo用法及代碼示例
- Ruby BigDecimal nonzero?用法及代碼示例
注:本文由純淨天空篩選整理自mayank5326大神的英文原創作品 Ruby | BigDecimal class ceil value。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。