Método Single.IsNegative() en C# con ejemplos

El método Single.IsNegative(Single) se usa para devolver un valor que indica si el número especificado se evalúa como negativo o no.

Sintaxis: public static bool IsNegative (float f);

Valor devuelto: este método devuelve verdadero si f se evalúa como Negativo; de lo contrario, devuelve falso.

Los siguientes programas ilustran el uso del método Single.IsNegative() :

Ejemplo 1:

// C# program to demonstrate the
// Single.IsNegative() Method
using System;
using System.Globalization;
  
class GFG {
  
    // Main Method
    public static void Main()
    {
        // Declaring and initializing value1
        float value1 = 1011.5615f;
  
        // using IsNegative() method
        bool value = Single.IsNegative(value1);
  
        // Displaying the result
        if (value)
            Console.WriteLine("{0} is Negative", value1);
        else
            Console.WriteLine("{0} is not Negative", value1);
    }
}
Producción:

1011.562 is not Negative

Ejemplo 2:

// C# program to demonstrate the
// Single.IsNegative() Method
using System;
using System.Globalization;
  
class GFG {
  
    // Main Method
    public static void Main()
    {
        // Declaring and initializing value1
        float value1 = -10.651f;
  
        // using IsNegative() method
        bool value = Single.IsNegative(value1);
  
        // Displaying the result
        if (value)
            Console.WriteLine("{0} is Negative", value1);
        else
            Console.WriteLine("{0} is not Negative", value1);
    }
}
Producción:

-10.651 is Negative

Referencia:

Publicación traducida automáticamente

Artículo escrito por RohitPrasad3 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *