modPow 抽象方法

int modPow(
  1. int exponent,
  2. int modulus
)

将此整数乘以 exponent 后对 modulus 取模的结果返回。

exponent 必须是非负数,且 modulus 必须为正数。

实现

int modPow(int exponent, int modulus);