Faktoru programma C: Faktoriāls no n ir visu pozitīvo dilstošo veselo skaitļu reizinājums . Faktoriāls no n ir apzīmēts ar n!. Piemēram:
5! = 5*4*3*2*1 = 120 3! = 3*2*1 = 6
Lūk, 5! tiek izrunāts kā '5 faktoriāls', to sauc arī par '5 bang' vai '5 shriek'.
samazinājuma attēls
Faktoriālu parasti izmanto kombinācijās un permutācijās (matemātika).
Ir daudz veidu, kā rakstīt faktoriālo programmu c valodā. Apskatīsim 2 faktorus programmas rakstīšanas veidus.
- Faktoriāla programma, izmantojot cilpu
- Faktoriāla programma, izmantojot rekursiju
Faktoriāla programma, izmantojot cilpu
Apskatīsim faktoriālo programmu, izmantojot cilpu.
#include int main() { int i,fact=1,number; printf('Enter a number: '); scanf('%d',&number); for(i=1;i<=number;i++){ fact="fact*i;" } printf('factorial of %d is: %d',number,fact); return 0; < pre> <p> <strong>Output:</strong> </p> <pre> Enter a number: 5 Factorial of 5 is: 120 </pre> <h2>Factorial Program using recursion in C</h2> <p>Let's see the factorial program in c using recursion.</p> <pre> #include long factorial(int n) { if (n == 0) return 1; else return(n * factorial(n-1)); } void main() { int number; long fact; printf('Enter a number: '); scanf('%d', &number); fact = factorial(number); printf('Factorial of %d is %ld ', number, fact); return 0; } </pre> <p> <strong>Output:</strong> </p> <pre> Enter a number: 6 Factorial of 5 is: 720 </pre> <hr></=number;i++){>
Faktoriāla programma, kas izmanto rekursiju valodā C
Apskatīsim faktoriālo programmu c, izmantojot rekursiju.
#include long factorial(int n) { if (n == 0) return 1; else return(n * factorial(n-1)); } void main() { int number; long fact; printf('Enter a number: '); scanf('%d', &number); fact = factorial(number); printf('Factorial of %d is %ld ', number, fact); return 0; }
Izvade:
Enter a number: 6 Factorial of 5 is: 720
=number;i++){>