modInverse 抽象方法

int modInverse(
  1. int modulus
)

返回此整数的模乘逆元,模为 modulus

modulus 必须为正数。

如果不存在模乘逆元,则为错误。

实现

int modInverse(int modulus);