Faktorielt program i Java: Faktoriel af n er produkt af alle positive faldende heltal . Faktoriel af n er betegnet med n!. For eksempel:
4! = 4*3*2*1 = 24 5! = 5*4*3*2*1 = 120
her, 4! udtales som '4 factorial', kaldes det også '4 bang' eller '4 shriek'.
Faktorialet bruges normalt i kombinationer og permutationer (matematik).
Der er mange måder at skrive det faktorielle program på i java-sprog. Lad os se de 2 måder at skrive det faktorielle program på i java.
- Faktorielt program ved hjælp af loop
- Faktorielt program ved hjælp af rekursion
Faktorielt program ved hjælp af loop i java
Lad os se det faktorielle program, der bruger loop i 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++){>
Faktorielt program ved hjælp af rekursion i java
Lad os se det faktorielle program i java ved hjælp af rekursion.
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); } }
Produktion:
css grænse
Factorial of 4 is: 24=number;i++){>