hdu 1004 Let the Balloon Rise

 简单题,读入字符串,计数就好,不多说了。。

#include 
#include 

int n,f[1005],l,max,k;
char a[1005][20],s[1005][20];

int check(int x)
{
	int i;
	for (i=1;i<=l;i++)
		if (strcmp(s[i],a[x])==0) { f[i]++;return 0;}
	return 1;
}
int main()
{
	int i;
	scanf("%d",&n);
	while (n!=0)
	{
		l=0;
		gets(a[0]);
		for (i=1;i<=n;i++)
		{
			gets(a[i]);
			if (check(i))
			{
				l++;
				strcpy(s[l],a[i]);
				f[l]=1;
			}
		}
		max=0;
		for (i=1;i<=l;i++)
			if (f[i]>max) { max=f[i]; k=i;}
		puts(s[k]);
		scanf("%d",&n);
	}
	return 0;
}


你可能感兴趣的:(hdu)