当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C# Single.IsNegative()用法及代码示例


Single.IsNegative(Single)方法用于返回一个值,该值指示指定的数字是否为负。

用法: public static bool IsNegative (float f);

返回值:如果f取值为Negative,则此方法返回true,否则返回false。


以下示例程序旨在说明Single.IsNegative()方法的使用:

示例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); 
    } 
}
输出:
1011.562 is not Negative

示例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); 
    } 
}
输出:
-10.651 is Negative

参考:



相关用法


注:本文由纯净天空筛选整理自RohitPrasad3大神的英文原创作品 Single.IsNegative() Method in C# with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。