Java使用BigInteger递归进行大数阶乘
程序员文章站
2022-05-08 22:38:14
...
public BigInteger factorial(int num){
if(num==1)return new BigInteger("1");
return new BigInteger(String.valueOf(num)).multiply(factorial(--num));
}
上一篇: Equivalent Strings (递归)(分治)
下一篇: IntelliJ IDEA使用