Float negativo() es un método de clase flotante que verifica si el valor flotante es negativo.
Sintaxis: float.negative()
Parámetro: valor flotante que se va a comprobar
Devolución: el valor booleano devuelve falso: si el valor es positivo y devuelve verdadero: si el valor es negativo
Ejemplo 1:
# Ruby code for negative() method # Initializing value a = -100.7 - 10.4 b = -100 * 2000.0 c = (22 + 7.1) * 4 # Printing result puts "a is negative : #{a.negative?}\n\n" puts "b is negative : #{b.negative?}\n\n" puts "c is negative : #{c.negative?}\n\n"
Producción :
a is negative : true b is negative : true c is negative : false
Ejemplo #2:
# Ruby code for negative() method # Initializing value a = -56.23333333 b = 10000.0 c = -(22 + 7.1) # Printing Result puts "a is negative : #{a.negative?}\n\n" puts "b is negative : #{b.negative?}\n\n" puts "c is negative : #{c.negative?}\n\n"
Producción :
a is negative : true b is negative : false c is negative : true
Publicación traducida automáticamente
Artículo escrito por mayank5326 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA