红宝石 | BigDecimal 类 ceil 值
BigDecimal#ceil() : ceil()是一个 BigDecimal 类方法,它返回传递的 BigDecimal 值的 ceil 值。
Syntax: BigDecimal.ceil()
Parameter:
– BigDecimal value which is to get its ceil value
– decimal digits (default = 0)
Return:
– smallest number >= to BigDecimal with a ndigits decimal point precision.
– For -ve precision : Integer with at least ndigits.abs trailing zeros.
– For +ve precision : BigDecimaling point number.
代码 #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