BigDecimal#-@() : -@() es un método de clase BigDecimal que devuelve su propio valor propio. Funciona como -@a = -(a)
Syntax: BigDecimal.-@() Parameter: BigDecimal value Return: Negative Self
Código #1: Ejemplo para el método -@()
# Ruby code for BigDecimal.-@() method # loading BigDecimal require 'bigdecimal' # declaring BigDecimal a = -42.1 ** 13 # declaring BigDecimal b = BigDecimal("10") # declaring BigDecimal c = -(22 - 7.1)- 10 # NEGATION RESULT puts "-@a : #{-a}\n\n" puts "-@b : #{-b}\n\n" puts "-@c : #{-c}\n\n"
Producción :
-@a : 1.3051704902006439e+21 -@b : -0.1E2 -@c : 24.9
Código #2: Ejemplo para el método -@()
# Ruby code for BigDecimal.-@() 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') # NEGATION RESULTS puts "-@a : #{-a}\n\n" puts "-@b : #{-b}\n\n" puts "-@c : #{-c}\n\n"
Producción :
-@a : 8916100448283 -@b : 0.864590173821032799999E22 -@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