Problem1115--统计输入中各个数字出现的个数

1115: 统计输入中各个数字出现的个数

Time Limit: 1 Sec  Memory Limit: 128 MB
Submit: 4  Solved: 3
[Submit] [Status] [Web Board] [Creator:]

Description

统计输入中各个数字出现的个数,数字包括0、1、2 、、、8、9。

使用格式 printf("%d%4d\n",  i, a[i] ) 输出结果,效果见 样例输出

Sample Input

1004 Problem A
1055 Problem B
1059 Problem C
1061 Problem D
1068 Problem E
1040 Problem F
1112 Problem G
1113 Problem H
1071 Problem I
1114 Problem J

Sample Output

0   9
1  18
2   1
3   1
4   3
5   3
6   2
7   1
8   1
9   1

Source/Category