BigDecimal#abs() : abs() es un método de clase BigDecimal que funciona con valores BigDecimal y los convierte a la forma absoluta.
Sintaxis: BigDecimal.abs()
Parámetro: valor BigDecimal que se convertirá en valor absoluto
Retorno: valor absoluto del valor BigDecimal pasado
Código #1: Ejemplo para el método 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"
Producción :
absolute value of a : 1.3051704902006439e+21 absolute value of b : 0.1E2 absolute value of c : 33978252067.813686
Código #2: Ejemplo para el método 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"
Producción :
valor absoluto de a : 8916100448229
valor absoluto de b : 0.205121100730586399999999999999999999999999999999999999999999999999999999999999999999999999999999999999999E96
valor absoluto de c : 0.3E1
Publicación traducida automáticamente
Artículo escrito por mayank5326 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA