Programa factorial en Java: Factorial de n es el producto de todos los números enteros positivos descendentes . factorial de norte se denota por n!. Por ejemplo:
4! = 4*3*2*1 = 24 5! = 5*4*3*2*1 = 120
¡Aquí, 4! se pronuncia como '4 factorial', también se llama '4 bang' o '4 chillido'.
El factorial se utiliza normalmente en Combinaciones y Permutaciones (matemáticas).
Hay muchas formas de escribir el programa factorial en lenguaje java. Veamos las 2 formas de escribir el programa factorial en java.
- Programa factorial usando bucle
- Programa factorial usando recursividad
Programa factorial usando loop en java
Veamos el programa factorial usando loop en java.
class FactorialExample{ public static void main(String args[]){ int i,fact=1; int number=5;//It is the number to calculate factorial for(i=1;i<=number;i++){ fact="fact*i;" } system.out.println('factorial of '+number+' is: '+fact); < pre> <p>Output:</p> <pre> Factorial of 5 is: 120 </pre> <h2>Factorial Program using recursion in java</h2> <p>Let's see the factorial program in java using recursion.</p> <pre> class FactorialExample2{ static int factorial(int n){ if (n == 0) return 1; else return(n * factorial(n-1)); } public static void main(String args[]){ int i,fact=1; int number=4;//It is the number to calculate factorial fact = factorial(number); System.out.println('Factorial of '+number+' is: '+fact); } } </pre> <p>Output:</p> <pre> Factorial of 4 is: 24 </pre></=number;i++){>
Programa factorial usando recursividad en java
Veamos el programa factorial en java usando recursividad.
class FactorialExample2{ static int factorial(int n){ if (n == 0) return 1; else return(n * factorial(n-1)); } public static void main(String args[]){ int i,fact=1; int number=4;//It is the number to calculate factorial fact = factorial(number); System.out.println('Factorial of '+number+' is: '+fact); } }
Producción:
Factorial of 4 is: 24=number;i++){>