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


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


在C#中,MathF.Pow(Single,Single)是MathF类方法。此方法用于计算将数字提高到其他数字的乘方。

用法: public static float Pow (float x, float y);

参数:
x:它是一个单精度浮点数,将被提高为幂,并且此参数的类型为System.Single。
y:它是一个单精度浮点数,它指定幂或指数,并且此参数的类型为单系统


返回类型:该函数返回加到幂的基数。此方法的返回类型为System.Single

例:

// C# program to illustrate the 
// MathF.Pow(Single, Single) Method 
using System; 
  
class GFG { 
  
    // Main Method 
    static public void Main() 
    { 
  
        // Find power using MathF.Pow 
        // 8 is base and 4 is power or 
        // index or exponent of a number 
        float pow_ab = MathF.Pow(8f, 4f); 
  
        // Print the result 
        Console.WriteLine(pow_ab); 
  
        // 7.5 is base and 2 is power or 
        // index or exponent of a number 
        float pow_tt = MathF.Pow(7.5f, 2f); 
  
        // Print the result 
        Console.WriteLine(pow_tt); 
  
        // 1234 is base and 7 is power or 
        // index or exponent of a number 
        float pow_t = MathF.Pow(1234f, 7f); 
  
        // Print the result 
        Console.WriteLine(pow_t); 
    } 
}
输出:
4096
56.25
4.357186E+21


相关用法


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