當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Ruby BigDecimal power用法及代碼示例


BigDecimal#power():power()是BigDecimal類方法,該方法返回將BigDecimal值提高為n的冪。

用法: BigDecimal.power()

參數:BigDecimal值查找冪值


返回:
n-升至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


相關用法


注:本文由純淨天空篩選整理自mayank5326大神的英文原創作品 Ruby | BigDecimal class power value。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。