📜  红宝石 | BigDecimal 类绝对值

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

红宝石 | BigDecimal 类绝对值

BigDecimal#abs() : abs()是一个 BigDecimal 类方法,它适用于 BigDecimal 值并将它们转换为绝对形式。

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

# Ruby code for abs() method
  
# loading BigDecimal
require 'bigdecimal'
  
# declaring BigDecimal
a = 42.1**13
  
# declaring BigDecimal
b = -BigDecimal("10")
  
# declaring BigDecimal
c = -(22 ** 7.1) * 10
  
# a
puts "absolute value of a : #{a.abs}\n\n"
  
# b
puts "absolute value of b : #{b.abs}\n\n"
  
# c
puts "absolute value of c : #{c.abs}\n\n"

输出 :

absolute value of a : 1.3051704902006439e+21

absolute value of b : 0.1E2

absolute value of c : 33978252067.813686

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

# Ruby code for abs() method
  
# loading BigDecimal
require 'bigdecimal'
  
# declaring BigDecimal
a = 12**12 - 27
  
# declaring BigDecimal
b = BigDecimal('10')-(22 ** 7.1) ** 10
  
# declaring BigDecimal
c = BigDecimal('-3')
  
# a
puts "absolute value of a : #{a.abs}\n\n"
  
# b
puts "absolute value of b : #{b.abs}\n\n"
  
# c
puts "absolute value of c : #{c.abs}\n\n"

输出 :