文章

145

粉丝

217

获赞

21

访问

85.1k

头像
统计字符 题解:C-easy
P1320 浙江大学机试题
发布于2024年2月10日 22:20
阅读数 678

#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;
}

 

登录查看完整内容


登录后发布评论

暂无评论,来抢沙发