C - Let the Balloon Rise(10)

Description

在ACM比赛中,你每解决一道题,你就可以获得一个气球,不同颜色的气球代表你解决了不同的问题。在WJL同学参加的一场ACM比赛中,他发现场面上有N个气球,并熟练的说出了气球的颜色。

请你编写一个程序,找出气球数量最多的颜色。

Input

有多组样例输入。

每组样例第一行输入一个整数N (0 < N <= 1000) ,代表一共有N个气球。若N=0,则代表输入结束,你不需要输出任何信息。
接下来N行每行输入一个不多于15个字母的字符串代表颜色。

Output

对于每组样例数据,在单独的一行内输出数量最多的那种颜色的气球。(数据保证输出是唯一的) 

Sample Input

5
green
red
blue
red
red
3
pink
orange
pink
0

Sample Output

red
pink
#include 
#include 
#include
#include
#include
using namespace std;
struct st
{
    int sum;
    char s[20];
}a[1001],t;
int main()
{int n;
while(scanf("%d",&n)!=EOF)
{
    if(n==0)break;
    int i,j;
    for(i=0;ia[j+1].sum)
            {
                t=a[j];
                a[j]=a[j+1];
                a[j+1]=t;
            }
        }
    }
    printf("%s\n",a[i].s);
}
    return 0;
}

 

你可能感兴趣的:(VJ)