题目845 无主之地1

题目845 无主之地1_第1张图片

已AC代码:

#include
using namespace std;
struct ren
{
    int id;
    int num;
};
int main()
{
    ren a[105];
    int c, d, t=0;
    while((scanf("%d%d", &c, &d))&&(c||d))
    {
        int e=0;
        if(t==0)
        {
            a[t].id = c;
            a[t].num = d;
            t++;
        }
        else
        {
            for(int i=0; i


你可能感兴趣的:(算法水题,南阳理工OJ)