gpt4 book ai didi

java - 使用 BigInteger 参数调用方法时出现问题

转载 作者:行者123 更新时间:2023-11-29 10:03:47 24 4
gpt4 key购买 nike

我遇到了麻烦,对此我无能为力。我想知道如何调用此方法?

public static BigInteger factorial(BigInteger n) {
BigInteger result = BigInteger.ONE;

while (!n.equals(BigInteger.ZERO)) {
result = result.multiply(n);
n = n.subtract(BigInteger.ONE);
}

return result;
}

对于 var=1,我明白了,我写了以下内容:

BigInteger kk = BigInteger.ONE;
System.out.println(factorial(kk));

但是,例如,我不知道如何数 61!。

最佳答案

尝试:

 BigInteger kk = new BigInteger("61");
System.out.println(factorial(kk));

关于java - 使用 BigInteger 参数调用方法时出现问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14937180/

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