gpt4 book ai didi

C# ModPow -1 问题

转载 作者:太空宇宙 更新时间:2023-11-03 21:31:08 28 4
gpt4 key购买 nike

我正在尝试这个:

BigInteger.ModPow(x, -1, z);

但此方法不能使用 -1 作为 Pow 参数。在 C# 中是否有任何已经实现的类可以做到这一点,或者我需要创建自己的类?

最佳答案

记住你的高中数学书上的身份:x ^ -1 == 1/x。所以这很简单:

  BigInteger.DivRem(BigInteger.Divide(BigInteger.One, x), z, out remainder);

关于C# ModPow -1 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24162233/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com