文章
145
粉丝
217
获赞
21
访问
85.1k
#include <stdio.h>
#include <string.h>
int main()
{
char t[6],s[81];
while(gets(t) != NULL)
{
int tt[6] = {0},i,j;
if(strcmp(t,"#") == 0) break;
gets(s);
for(i = 0; i < strlen(t); i++)
for(j = 0; j < strlen(s); j++)
if(t[i] == s[j])
tt[i]++;
for(i = 0 ;i < strlen(t); i++)
printf("%c %d\n",t[i],tt[i]);
}
return 0;
}
登录后发布评论
暂无评论,来抢沙发