Problem Description
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.
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.
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
5 green red blue red red 3 pink orange pink 0
Sample Output
red pink
#include<stdio.h>
#include<string.h>
int main()
{
int n,i,k,j,h;
char col[20];
int count[10005],temp;
while(scanf("%d",&n),n)
{
char col1[10005][20];
k=0;
memset(count,0,sizeof(count));
for(i=0;i<n;i++)
{
scanf("%s",col);
for(j=0;j<k;j++)
{
if(strcmp(col1[j],col)==0)
{
count[j]++;
break;
}
}
if(j==k)
{
for(h=0;h<strlen(col);h++)
col1[k][h]=col[h];
col1[k][h]='\0';
k++;
}
}
temp=count[0];
int indx=0;
for(i=1;i<k;i++)
{
if(count[i]>temp)
{
temp=count[i];
indx=i;
}
}
printf("%s\n",col1[indx]);
}
return 0;
}
#include<string.h>
int main()
{
int n,i,k,j,h;
char col[20];
int count[10005],temp;
while(scanf("%d",&n),n)
{
char col1[10005][20];
k=0;
memset(count,0,sizeof(count));
for(i=0;i<n;i++)
{
scanf("%s",col);
for(j=0;j<k;j++)
{
if(strcmp(col1[j],col)==0)
{
count[j]++;
break;
}
}
if(j==k)
{
for(h=0;h<strlen(col);h++)
col1[k][h]=col[h];
col1[k][h]='\0';
k++;
}
}
temp=count[0];
int indx=0;
for(i=1;i<k;i++)
{
if(count[i]>temp)
{
temp=count[i];
indx=i;
}
}
printf("%s\n",col1[indx]);
}
return 0;
}
本文介绍了一个简单的程序设计问题——统计比赛中各种颜色气球的数量,并找出最受欢迎的问题对应的气球颜色。输入包括多组测试数据,每组包含不同颜色的气球,需要通过程序计算并输出每组中最常出现的颜色。
928

被折叠的 条评论
为什么被折叠?



