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
相關用法
- Ruby BigDecimal dup用法及代碼示例
- Ruby BigDecimal eql?用法及代碼示例
- Ruby BigDecimal div用法及代碼示例
- Ruby BigDecimal nan?用法及代碼示例
- Ruby BigDecimal floor用法及代碼示例
- Ruby BigDecimal hash用法及代碼示例
- Ruby BigDecimal nonzero?用法及代碼示例
- Ruby BigDecimal inspect用法及代碼示例
- Ruby BigDecimal modulo用法及代碼示例
- Ruby BigDecimal frac用法及代碼示例
- Ruby BigDecimal infinite?用法及代碼示例
- Ruby BigDecimal ceil用法及代碼示例
- Ruby BigDecimal absolute用法及代碼示例
- Ruby BigDecimal coerce用法及代碼示例
注:本文由純淨天空篩選整理自mayank5326大神的英文原創作品 Ruby | BigDecimal class power value。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。