Float prev_float() es un método de clase flotante que devuelve la representación anterior del número de coma flotante.
Sintaxis: float.prev_float()
Parámetro: valor flotante a pasar
Retorno: Representación anterior del número de coma flotante.
Ejemplo 1:
# Ruby code for prev_float() method # Initializing value a = 26.00/ 3 b = 8.0999 c = 3 + 105.003 # Printing Result puts "previous Floating Point Number : #{a.prev_float}\n\n" puts "previous Floating Point Number : #{b.prev_float}\n\n" puts "previous Floating Point Number : #{c.prev_float}\n\n"
Producción :
previous Floating Point Number : 8.666666666666664 previous Floating Point Number : 8.099899999999998 previous Floating Point Number : 108.00299999999999
Ejemplo #2:
# Ruby code for next_float() method # Initializing value a = 26.00 b = 8.0 # Printing result puts "previous Floating Point Number : #{a.next_float}\n\n" puts "previous Floating Point Number : #{b.prev_float}\n\n"
Producción :
previous Floating Point Number : 26.000000000000004 previous Floating Point Number : 7.999999999999999
Publicación traducida automáticamente
Artículo escrito por mayank5326 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA