2016-04-12

It is not possible to store factorial for large number like 50 into inbuilt data types like integer or long. Because factorial of 50 has almost 60 digits. Imagine how we can store it in int or long. We can find factorial of such numbers using BigInteger class defined in java.math package.

Below program shows how you can do this.

Also Read: Factorial of Large Number in C and C++

Program for Factorial of Large Number in Java

Output



Comment below if you are facing any difficulty to understand this program.

The post Factorial of Large Number in Java appeared first on The Crazy Programmer.

Show more