1820: 统计小写字母

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:25 Solved:11

Description

 

【问题描述】输入一串小写字母,统计出每个字母在该字符串中出现的次数(若某字母不出现,则不要输出)

【输入格式】输入一串小写字母

【输出格式】输出每个字母在该字符串中出现的次数

【输入样例】aaaabbbccc

【输出样例】

a:4

b:3

c:3