java

Let’s see how to write a simple Java program to calculate the factorial

If you don’t know what is factorial, let me show you!!

Factorial is Multiplying given integer with the sequence of descending positive integers.

For example,  The value of 5! is 120.
which is, 5 x 4 x 3 x 2 x 1  =  120

Let’s write a Factorial Program in Java now:

The output of the above program will be:

 

Related Posts

Leave a Reply