modInverse 抽象方法

int modInverse(
  1. int modulus
)

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

modulus 必须为正数。

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

实现

int modInverse(int modulus);