Magnitud flotante() es un método de clase flotante que funciona con valores flotantes y los convierte a la forma absoluta.
Sintaxis: float.magnitude()
Parámetro: valor flotante que se convertirá en valor absoluto
Retorno: valor absoluto del valor flotante pasado
Ejemplo 1:
# Ruby program for magnitude() method # Initializing value a = -56.23333333 b = -10000.0 c = -(22 + 7.1) # Printing result puts "magnitude value of a : #{a.magnitude}\n\n" puts "magnitude value of b : #{b.magnitude}\n\n" puts "magnitude value of c : #{c.magnitude}\n\n"
Producción :
magnitude value of a : 56.23333333 magnitude value of b : 10000.0 magnitude value of c : 29.1
Ejemplo #2:
# Ruby program for magnitude() method # Initializing value a = -100.7 - 10.4 b = -100 * 2000.0 c = -(22 + 7.1) * 4 # Printing result puts "magnitude value of a : #{a.magnitude}\n\n" puts "magnitude value of b : #{b.magnitude}\n\n" puts "magnitude value of c : #{c.magnitude}\n\n"
Producción :
magnitude value of a : 111.10000000000001 magnitude value of b : 200000.0 magnitude value of c : 116.4
Publicación traducida automáticamente
Artículo escrito por mayank5326 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA