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


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


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

用法:

public static double Pow(double base, double power)

参数:


  • double base: 它是一个双精度浮点数,将被提高为幂,并且此参数的类型为System.Double。
  • double power: 它是一个双精度浮点数,它指定幂或指数,并且此参数的类型为System.Double。

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

例子:

Input  : base = 8, power =2 
Output : 64

Input  : base = 2.5, power =3
Output : 15.625

程序:演示Math.Pow()

// C# program to illustrate the  
// Math.Pow() function 
using System; 
class GFG { 
  
    // Main Method 
    static public void Main() 
    { 
  
        // Find power using Math.Pow 
        // 6 is base and 2 is power or 
        // index or exponent of a number 
        double pow_ab = Math.Pow(6, 2); 
  
        // Print the result 
        Console.WriteLine(pow_ab); 
  
        // 3.5 is base and 3 is power or 
        // index or exponent of a number 
        double pow_tt = Math.Pow(3.5, 3); 
  
        // Print the result 
        Console.WriteLine(pow_tt); 
  
        // 202 is base and 4 is power or 
        // index or exponent of a number 
        double pow_t = Math.Pow(202, 4); 
  
        // Print the result 
        Console.WriteLine(pow_t); 
    } 
}

输出:

36
42.875
1664966416

参考:https://msdn.microsoft.com/en-us/library/system.math.pow(v=vs.110).aspx



相关用法


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