logo

Programa factorial en C

Programa factorial en C: el factor de n és el producte de tots els nombres enters descendents positius . Factorial de n es denota amb n!. Per exemple:

 5! = 5*4*3*2*1 = 120 3! = 3*2*1 = 6 

Aquí, 5! es pronuncia com a '5 factorial', també s'anomena '5 bang' o '5 crits'.

imatge de reducció

El factorial s'utilitza normalment en Combinacions i Permutacions (matemàtiques).

Hi ha moltes maneres d'escriure el programa factorial en llenguatge c. Vegem les 2 maneres d'escriure el programa factorial.

  • Programa factorial utilitzant bucle
  • Programa factorial amb recursivitat

Programa factorial utilitzant bucle

Vegem el programa factorial amb bucle.

 #include int main() { int i,fact=1,number; printf(&apos;Enter a number: &apos;); scanf(&apos;%d&apos;,&amp;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&apos;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(&apos;Enter a number: &apos;); scanf(&apos;%d&apos;, &amp;number); fact = factorial(number); printf(&apos;Factorial of %d is %ld
&apos;, number, fact); return 0; } </pre> <p> <strong>Output:</strong> </p> <pre> Enter a number: 6 Factorial of 5 is: 720 </pre> <hr></=number;i++){>

Programa factorial utilitzant recursivitat en C

Vegem el programa factorial en c utilitzant recursivitat.

 #include long factorial(int n) { if (n == 0) return 1; else return(n * factorial(n-1)); } void main() { int number; long fact; printf(&apos;Enter a number: &apos;); scanf(&apos;%d&apos;, &amp;number); fact = factorial(number); printf(&apos;Factorial of %d is %ld
&apos;, number, fact); return 0; } 

Sortida:

 Enter a number: 6 Factorial of 5 is: 720