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


C# MathF.Sqrt()用法及代码示例


在C#中,MathF.Sqrt(Single)是MathF类(在系统名称空间中存在)方法,用于计算指定的Single或float数据类型值的平方根。

用法: public static float Sqrt (float x);
Here, x is the number whose square root is to be calculated and type of this parameter is System.Single.

返回类型:此方法返回x的平方根。如果x等于NaN,NegativeInfinity或PositiveInfinity,则返回该值。此方法的返回类型为System.Single。


下面的示例说明了上述方法的使用:
示例1:

// C# program to demonstrate the 
// MathF.Sqrt(Single) Method 
using System; 
  
class GFG { 
  
    // Main Method 
    public static void Main() 
    { 
  
        // taking positive value 
        float x = 78521F; 
  
        // taking negative value 
        float x1 = -7824F; 
  
        // Input positive value 
        // Output will be square 
        // root of x 
        Console.WriteLine(MathF.Sqrt(x)); 
  
        // Input negative value, 
        // Output will be NaN 
        Console.Write(MathF.Sqrt(x1)); 
    } 
}
输出:
280.216
NaN

示例2:

// C# program to demonstrate the MathF.Sqrt() 
// method when the argument is positive 
// or negative Zero 
using System; 
  
class GFG { 
  
    // Main Method 
    public static void Main() 
    { 
  
        // taking positive zero  
        float x = 0f; 
        Console.WriteLine(MathF.Sqrt(x)); 
  
        // taking negative zero 
        float y = -0f; 
        Console.Write(MathF.Sqrt(y)); 
    } 
}
输出:
0
0


相关用法


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