当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。