La función to_f en Ruby convierte el valor del número como un flotante . Si no cabe en float, devuelve infinito.
Sintaxis : número.to_f
Parámetro : la función toma el número entero que se va a convertir en flotante.
Valor devuelto : la función devuelve el valor flotante del número.
Ejemplo 1:
# Ruby program for to_f function # Initializing the number num1 = 5 num2 = 10 num3 = 1678 num4 = 1897.90 # Prints the int as float puts num1.to_f puts num2.to_f puts num3.to_f puts num4.to_f
Salida :
5.0 10.0 1678.0 1897.9
Ejemplo #2:
# Ruby program for to_f function # Initializing the number num1 = 51 num2 = 10.78 num3 = 1690 num4 = 183 # Prints the int as float puts num1.to_f puts num2.to_f puts num3.to_f puts num4.to_f
Salida :
51.0 10.78 1690.0 183.0