1~1000까지의 곱을 재귀로 구하는건데


자바로 풀어야함.. 헬프 !!


본인은 


static BigInteger mul(BigInteger big) {

BigInteger hun = new BigInteger("100");

if(big.equals(hun)) {

return hun;

}

return big.multiply(mul(big.add(BigInteger.ONE)));

}


풀다가 실패했음..