我遇到了麻烦,对此我无能为力。我想知道我怎么称呼这个方法?
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 感到困惑!