BigDecimal#quo():quo()是BigDecimal類方法,該方法將兩個BigDecimal值相除。
用法:BigDecimal.quo()
參數:BigDecimal值
返回:將兩個BigDecimal值相除。
例1:quo()方法的例子
# Ruby code for BigDecimal.quo() method
# loading library
require 'bigdecimal'
# declaring bigdecimal
a = 42.1**13
# declaring bigdecimal
b = -BigDecimal("10")
# declaring bigdecimal
c = -(22 ** 7.1) * 10
# a
puts "BigDecimal a quo b : #{a.quo(b)}\n\n"
# b
puts "BigDecimal b quo c : #{b.quo(c)}\n\n"
# c
puts "BigDecimal a quo c : #{c.quo(a)}\n\n"
輸出:
BigDecimal a quo b : -0.1305170490200644E21 BigDecimal b quo c : 0.294305898374113860903919913595274271160955693E-9 BigDecimal a quo c : -2.603357363878968e-11
例2:quo()方法的例
# Ruby code for BigDecimal.quo() method
# loading library
require 'bigdecimal'
# declaring bigdecimal
a = 12**12 - 27
# declaring bigdecimal
b = BigDecimal('10')-(22 ** 7.1) ** 10
# declaring bigdecimal
c = BigDecimal('-3')
# a
puts "BigDecimal a quo b : #{a.quo(b)}\n\n"
# b
puts "BigDecimal b quo c : #{b.quo(c)}\n\n"
# c
puts "BigDecimal a quo c : #{c.quo(a)}\n\n"
輸出:
BigDecimal a quo b : -0.43467495135664927751543107109605140241443591953770701070858615126212074067246983224430195700021040971296977257849892016846008052931414945402329722017988217346432784277797794204259881413316908809142E-82 BigDecimal b quo c : 0.68373700243528799999999999999999999999999999999999999999999999999999999999999999999999999999996666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666667E95 BigDecimal a quo c : -0.336469964354864161144849420060934E-12
相關用法
- Ruby BigDecimal sub()用法及代碼示例
- Ruby BigDecimal cos()用法及代碼示例
- Ruby BigDecimal log()用法及代碼示例
- Ruby BigDecimal zero?()用法及代碼示例
- Ruby BigDecimal sin()用法及代碼示例
- Ruby BigDecimal exp()用法及代碼示例
- Ruby BigDecimal PI()用法及代碼示例
- Ruby BigDecimal E()用法及代碼示例
- Ruby BigDecimal split()用法及代碼示例
- Ruby BigDecimal atan()用法及代碼示例
- Ruby BigDecimal sqrt()用法及代碼示例
- Ruby BigDecimal round()用法及代碼示例
- Ruby BigDecimal to_f()用法及代碼示例
- Ruby BigDecimal remainder()用法及代碼示例
- Ruby BigDecimal precs用法及代碼示例
注:本文由純淨天空篩選整理自mayank5326大神的英文原創作品 Ruby | BigDecimal quo() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。