about summary refs log tree commit diff stats
path: root/1.6.c
blob: 4ed1550bb5c358f27d8c1da4d97eb67461d3a926 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include <stdio.h>

int main () {
	int c, i, nwhite, nother;
	int ndigit[10] = {0};
	nwhite = nother = 0;

	while ((c = getchar()) != EOF)
		if (c >= '0' && c <= '9')
			++ndigit[c-'0'];
		else if (c == ' ' || c == '\n' || c == '\t')
			++nwhite;
		else
			++nother;
	printf("digits =");
	for (i = 0; i < 10; ++i)
		printf(" %d", ndigit[i]);
	printf(". white space = %d, other = %d\n",
			nwhite, nother);
}