Task Description
輸入一個字串,請寫一個程式,計算字串中每個字元出現的次數,並按照字母順序輸出。
Input Format
測資給定一行字串。
Output Format
每行輸出一個字母及其出現的次數,按照字母順序輸出,如果某個字母沒有出現,則不輸出該字母。
Sample Input
hello world
Sample Output
d 1
e 1
h 1
l 3
o 2
r 1
w 1
Task Description
輸入一個字串,請寫一個程式,計算字串中每個字元出現的次數,並按照字母順序輸出。
Input Format
測資給定一行字串。
Output Format
每行輸出一個字母及其出現的次數,按照字母順序輸出,如果某個字母沒有出現,則不輸出該字母。
Sample Input
hello world
Sample Output
d 1
e 1
h 1
l 3
o 2
r 1
w 1