我遇到了麻煩,我無法做任何事情。我想知道我怎麼稱呼這種方法?使用BigInteger參數調用方法的問題
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!例如。
我通過閱讀答案第一.... – Kent 2013-02-18 13:17:03