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