Advertisement
Wolfrost

C | Esercizio sui fattoriali

Jan 23rd, 2016
313
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. //Esegue il fattoriale di un numero
  2. #include <stdlib.h>
  3. #include <stdio.h>
  4.  
  5. main() {
  6.  
  7.     int numero = 0;
  8.     unsigned long long fattoriale = 1;
  9.     int i = 0;
  10.    
  11.     printf("Inserisci il numero: ");
  12.     scanf("%d",&numero);
  13.    
  14.     i = numero;
  15.     while (i>0)
  16.     {
  17.         if (i-1!=0)
  18.         {
  19.             fattoriale *= i;
  20.             i--;
  21.         }
  22.         else break;
  23.     }
  24.    
  25.     printf("Il fattoriale e': %llu", fattoriale);
  26.  
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement