Counting digits - examples

Nasza ocena:

3
Wyświetleń: 658
Komentarze: 0
Notatek.pl

Pobierz ten dokument za darmo

Podgląd dokumentu
Counting digits - examples - strona 1

Fragment notatki:

Counting digits #include /* count digits, white space, others */ int main() { int c, i, n_white, n_other; int n_digit[10]; /* 10 counters for 10 digits */ n_white = n_other = 0; for (i = 0; i = '0' && c

(…)

…;
printf("digits: ");
for (i = 0; i < 10; i++)
printf(" %d", n_digit[i]);
printf(", white spaces = %d, other = %d\n", n_white, n_other);
return 0;
}
Output:
digits: 12 5 0 0 0 0 0 0 0 1, white spaces = 326, other = 409

... zobacz całą notatkę



Komentarze użytkowników (0)

Zaloguj się, aby dodać komentarz