BigInteger.Pow(BigInteger, Int32) 方法

定义

求以 BigInteger 值为底、以指定的值为指数的幂。

C#
public static System.Numerics.BigInteger Pow(System.Numerics.BigInteger value, int exponent);

参数

value
BigInteger

要计算 exponent 次幂的数字。

exponent
Int32

value 进行幂运算的指数。

返回

valueexponent 次幂的计算结果。

例外

exponent 为负数。

示例

以下示例演示了使用 BigInteger 值和其值范围为 0 到 10 的指数的指数。

C#
BigInteger numericBase = 3040506;
for (int ctr = 0; ctr <= 10; ctr++)
{
   Console.WriteLine(BigInteger.Pow(numericBase, ctr));
}
//
// The example produces the following output to the console:
//
// 1
// 3040506
// 9244676736036
// 28108495083977874216
// 85464047953805230420993296
// 259853950587832525926412642447776
// 790087495886008322074413197838317614656
// 2402265771766383619317185774506591737267255936
// 7304103492650319992835619250501939216711515276943616
// 22208170494024253840136657344866649200046662468638726109696
// 67524075636103707946458547477011116092637077515870858568887346176     //

注解

Pow如果指数参数的值为 0,或者 如果 和 exponent 参数的value值为 0,则方法返回 1。 如果 exponent 为 1,则 Pow 方法返回 value。 如果 value 为负值,则方法返回负结果。

此方法对应于 Math.Pow 基元数值类型的 方法。

适用于

产品 版本
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10
.NET Framework 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 1.1, 1.2, 1.3, 1.4, 1.6, 2.0, 2.1
UWP 10.0