📜  红宝石 | BigDecimal 类 divmod 值

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

红宝石 | BigDecimal 类 divmod 值

BigDecimal#divmod() : divmod()是一个 BigDecimal 类方法,它将两个 BigDecimal 值相除。

代码 #1:divmod() 方法的示例

# Ruby code for divmod() method
  
# loading BigDecimal
require 'bigdecimal'
  
# declaring BigDecimal
a = 42.1**13
  
# declaring BigDecimal
b = -BigDecimal("10")
  
# declaring BigDecimal
c = -(22 ** 7.1) * 10
  
puts "divmod example 1 : #{a.divmod(b)}\n\n"
  
puts "divmod example 2 : #{b.divmod(c)}\n\n"
     

输出 :

divmod example 1 : [#, #]

divmod example 2 : [#, #]

代码 #2:divmod() 方法的示例

# Ruby code for divmod() 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')
  
puts "divmod example 1 : #{a.divmod(b)}\n\n"
  
puts "divmod example 2 : #{b.divmod(c)}\n\n"

输出 :

divmod example 1 : [#, #]

divmod example 2 : [#, #]