Float#to_i() es un método de clase flotante que devuelve una representación entera del valor flotante.
Sintaxis: float.to_i()
Parámetro: valor flotante como argumento
Retorno: Representación entera del valor flotante.
Ejemplo 1 :
# Ruby code for to_i() method # declaring float value a = 0.756567 # declaring float value b = 2797999.011 # converting to integer puts "Integer a : #{a.to_i}\n\n" # converting to integer puts "Integer b : #{b.to_i}\n\n"
Producción :
Integer a : 0 Integer b : 2797999
Ejemplo #2:
# Ruby code for to_i() method # declaring float value a = 0.767 # declaring float value b = 2999.011 # converting to integer puts "Integer a : #{a.to_i}\n\n" # converting to integer puts "Integer b : #{b.to_i}\n\n"
Producción :
Integer a : 0 Integer b : 2999
Publicación traducida automáticamente
Artículo escrito por mayank5326 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA