Factorial Program in Java
Factorial Program in Java: Factorial of n is the product of all positive descending integers. Factorial of n is denoted by n!. For example:
Here, 4! is pronounced as "4 factorial", it is also called "4 bang" or "4 shriek".
The factorial is normally used in Combinations and Permutations (mathematics).
There are many ways to write the factorial program in java language. Let's see the 2 ways to write the factorial program in java.
- Factorial Program using loop
- Factorial Program using recursion
Factorial Program using loop in java
Let's see the factorial Program using loop in java.
Output:
Factorial of 5 is: 120
Factorial Program using recursion in java
Let's see the factorial program in java using recursion.
Output:
Factorial of 4 is: 24