📜  红宝石 | BigDecimal 类 ceil 值

📅  最后修改于: 2022-05-13 01:55:28.323000             🧑  作者: Mango

红宝石 | BigDecimal 类 ceil 值

BigDecimal#ceil() : ceil()是一个 BigDecimal 类方法,它返回传递的 BigDecimal 值的 ceil 值。

代码 #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"

输出 :