字符统计
You cannot submit for this problem because the contest is ended. You can click "Open in Problem Set" to view this problem in normal mode.
题目描述
输入一串小写字母(以 .
为结束标志),统计出每个字母在该字符串中出现的次数(若某字母不出现,则不要输出)。
要求:每行输出 项,每项以空格隔开。
输入格式
输入一行以 .
结束的字符串
输出格式
输出相应小写字母的个数。
aaaabbbccc.
a:4 b:3 c:3