training

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

chkseven.c (406B)


      1 /*
      2  * Esercizio 3.39
      3  * Conta le occorrenze dei numeri '7' di un intero
      4 */
      5 
      6 #include <stdio.h>
      7 
      8 int main()
      9 {
     10    int num, tot = 0; /* Numero inserito e totale */
     11    int i = 1;
     12 
     13    printf("Dammi un intero: ");
     14    scanf("%d", &num);
     15 
     16    while(i <= 10000) {
     17       if (num / i % 10 == 7)
     18          ++tot;
     19       i *= 10;
     20    }
     21 
     22    printf("Sono state trovate %d occorrenze\n", tot);
     23 
     24    return 0;
     25 } /* E0F main */
     26