红宝石 | BigDecimal 类 divmod 值
BigDecimal#divmod() : divmod()是一个 BigDecimal 类方法,它将两个 BigDecimal 值相除。
Syntax: BigDecimal.divmod()
Parameter: BigDecimal values to divide
Return: Quotient and Remainder of the division of two BigDecimal Value
代码 #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 : [#, #]