BigInteger.ModPow(BigInteger, BigInteger, BigInteger) 方法

定义

对以某个数为底、以另一个数为指数的幂执行模数除法。

public:
 static System::Numerics::BigInteger ModPow(System::Numerics::BigInteger value, System::Numerics::BigInteger exponent, System::Numerics::BigInteger modulus);
public static System.Numerics.BigInteger ModPow (System.Numerics.BigInteger value, System.Numerics.BigInteger exponent, System.Numerics.BigInteger modulus);
static member ModPow : System.Numerics.BigInteger * System.Numerics.BigInteger * System.Numerics.BigInteger -> System.Numerics.BigInteger
Public Shared Function ModPow (value As BigInteger, exponent As BigInteger, modulus As BigInteger) As BigInteger

参数

value
BigInteger

要计算 exponent 次幂的数字。

exponent
BigInteger

value 进行幂运算的指数。

modulus
BigInteger

valueexponent 次幂要除以的数值。

返回

valueexponent 除以 modulus 后的余数。

例外

modulus 为零。

exponent 为负数。

示例

以下示例提供了调用 方法的 ModPow 简单说明。

using System;
using System.Numerics;

public class Class1
{
   public static void Main()
   {
      BigInteger number = 10;
      int exponent = 3;
      BigInteger modulus = 30;
      Console.WriteLine("({0}^{1}) Mod {2} = {3}",
                        number, exponent, modulus,
                        BigInteger.ModPow(number, exponent, modulus));
   }
}
// The example displays the following output:
//      (10^3) Mod 30 = 10
Imports System.Numerics

Module Example
   Public Sub Main()
      Dim number As BigInteger = 10
      Dim exponent As Integer = 3
      Dim modulus As BigInteger = 30
      Console.WriteLine("({0}^{1}) Mod {2} = {3}", _
                        number, exponent, modulus, _
                        BigInteger.ModPow(number, exponent, modulus))
   End Sub   
End Module
' The example displays the following output:
'       (10^3) Mod 30 = 10

注解

方法 ModPow 计算以下表达式:

(baseValue ^ 指数) 模数

若要在没有取模除法的情况下对 BigInteger 值执行指数运算,请使用 Pow 方法。

适用于

另请参阅