hdu.Let the Balloon Rise

本文介绍了一个简单的编程问题,即统计比赛中各种颜色气球的数量来找出最受欢迎的问题。输入包含多个测试用例,每个用例首先给出气球总数,随后是每种颜色的名称。通过比较颜色名称来统计出现频率最高的气球颜色。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

Problem Description

Contest time again! How excited it isto see balloons floating around. But to tell you a secret, the judges' favoritetime is guessing the most popular problem. When the contest is over, they willcount 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 numberof balloons distributed. The next N lines contain one color each. The color ofa 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 beprocessed.

 

Output

For each case, print the color ofballoon for the most popular problem on a single line. It is guaranteed thatthere is a unique solution for each test case.

 

较简单的题目

以下代码:

#include<stdio.h>

#include<string.h>

intmain()

{

       char color[1001][16];

       int i, j, n, temp;

       while(scanf("%d", &n)&& n != 0){

              getchar();

              int num[1006] = {0};              //用于存储当前项的个数

              for (i = 0; i < n; i++)

                     gets(color[i]);

              for (i = 0; i < n; i++)

              {

                     for (j = 0; j < n; j++)

                     {

                            if (strcmp(color[i],color[j]) == 0)

                                   num[i]++;

                     }

              }

              temp = 0;                          //假设当前最大为num[0]

              for (i = 1; i < n; i++)

              {

                     if (num[temp] < num[i])

                            temp = i;     

              }

              printf("%s\n",color[temp]);

       }

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值