📜  红宝石 | BigDecimal 类幂值

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

红宝石 | BigDecimal 类幂值

BigDecimal#power() : power()是一个 BigDecimal 类方法,它返回 BigDecimal 值的 n 次方。

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

# Ruby code for power() method
  
# loading BigDecimal
require 'bigdecimal'
  
# declaring BigDecimal
a = 42.1**13
  
# declaring BigDecimal
b = -BigDecimal("10")
  
  
# b
puts "power value of b : #{b.power(3, 4)}\n\n"
     

输出 :

power value of b : -0.1E4

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

# Ruby code for power() method
  
# loading BigDecimal
require 'bigdecimal'
  
# declaring BigDecimal
b = BigDecimal("200")
  
# declaring BigDecimal
c = BigDecimal('-3')
  
# POWER 
puts "power value of b : #{b.power(4)}\n\n"
  
# c
puts "power value of c : #{c.power(2)}\n\n"

输出 :

power value of b : 0.16E10

power value of c : 0.9E1