HDU1860:统计字符

来源:互联网 发布:js遍历数组对象 编辑:程序博客网 时间:2024/04/29 17:33
Problem Description
统计一个给定字符串中指定的字符出现的次数
 

Input
测试输入包含若干测试用例,每个测试用例包含2行,第1行为一个长度不超过5的字符串,第2行为一个长度不超过80的字符串。注意这里的字符串包含空格,即空格也可能是要求被统计的字符之一。当读到'#'时输入结束,相应的结果不要输出。
 

Output
对每个测试用例,统计第1行中字符串的每个字符在第2行字符串中出现的次数,按如下格式输出:
c0 n0
c1 n1
c2 n2
... 
其中ci是第1行中第i个字符,ni是ci出现的次数。
 

Sample Input
ITHIS IS A TESTi ngthis is a long test string#
 

Sample Output
I 2i 3 5n 2g 2 注:第2个测试用例中,空格也是被统计的字符之一。
 


 

#include <iostream>#include <cstdio>#include <cstring>using namespace std;int main(){    char str[100],s[10];    while(gets(s))    {        if(!strcmp(s,"#"))        break;        gets(str);        int lens = strlen(s),lenstr=strlen(str),i,j;        for(i = 0;i<lens;i++)        {            int num = 0;            cout << s[i] << " ";            for(j = 0;j<lenstr;j++)            {                if(s[i] == str[j])                num++;            }            cout << num <<endl;        }    }    return 0;}


 

原创粉丝点击