training

Code I wrote during training
git clone git://git.bitsmanent.org/training
Log | Files | Refs | README

seqsum.c (442B)


      1 /* Esercizio 4.9 */
      2 
      3 #include <stdio.h>
      4 
      5 int main()
      6 {
      7    int counter, value;
      8    int total = 0; /* volutamente NON inizializzato */
      9 		  /* nell'intestazione del for() */
     10 
     11    printf("Intero: ");
     12    scanf("%d", &value);
     13 
     14    for (counter = value; counter >= 1; --counter) {
     15       printf("Intero [-%d]: ", counter);
     16       scanf("%d", &value);
     17 
     18       total += value;
     19    }
     20 
     21    printf("La domma dei valori è %d\n", total);
     22 
     23    return 0;
     24 } /* E0F */
     25