La función de magnitud() en Ruby devuelve el valor absoluto del número entero. Es similar a la función abs y es un alias de la misma.
Sintaxis : (número).magnitud
Parámetro : La función toma el número entero cuya magnitud se va a devolver.
Valor devuelto : la función devuelve el valor absoluto del entero.
Ejemplo 1:
# Ruby program of Integer magnitude function # Initializing the numbers num1 = -21 num2 = 21 num3 = 0 num4 = -100 # Printing the magnitude value of integers puts (num1).magnitude puts (num2).magnitude puts (num3).magnitude puts (num4).magnitude
Salida :
21 21 0 100
Ejemplo #2:
# Ruby program of Integer magnitude function # Initializing the numbers num1 =29 num2 = -7 num3 = 90 num4 = -10 # Printing the magnitude value of integers puts (num1).magnitude puts (num2).magnitude puts (num3).magnitude puts (num4).magnitude
Salida :
29 7 90 10