气球

来源:互联网 发布:java面向对象总结 编辑:程序博客网 时间:2024/05/16 19:57

Contest time again! How excited it is to see balloons floating around. But to tell you a secret, the judges' favorite time is guessing the most popular problem. When the contest is over, they will count the balloons of each color and find the result.

This year, they decide to leave this lovely job to you.

INPUT

Input contains multiple test cases. Each test case starts with a number N (0 < N <= 1000) -- the total number of balloons distributed. The next N lines contain one color each. The color of a balloon is a string of up to 15 lower-case letters.

A test case with N = 0 terminates the input and this test case is not to be processed.

OUTPUT

For each case, print the color of balloon for the most popular problem on a single line. It is guaranteed that there is a unique solution for each test case.

SAMPLE INPUT

5greenredblueredred3pinkorangepink0

SAMPLE OUTPUT

red

pink

这个不可以只考虑五种颜色的气球,可能多于五种。用数组指针来存储数据。

#include<stdio.h>#include<string.h>int main(){int N;while(scanf("%d",&N)!=EOF && N!=0){char str[1010][20];int arr[1010]={0};int i,j;for(i=0;i<N;i++){scanf("%s",str[i]);for(j=0;j<i;j++){if(strcmp(str[i],str[j])==0)arr[i]++;}}int max=0;for(i=1;i<N;i++){if(arr[max]<arr[i])max=i;}printf("%s\n",str[max]);}return 0;}

0 0