MAY


私信TA

用户名:may19950501

访问量:8696

签 名:

等  级
排  名 4141
经  验 1756
参赛次数 0
文章发表 14
年  龄 0
在职情况 学生
学  校 哈尔滨学院
专  业

  自我简介:

解题思路:

注意事项:

参考代码:

#include<iostream>

#include<bits/stdc++.h>

#include<cstdio>

#include<cstring>

#include<algorithm>

using namespace std;

struct student

{

    char id[9];

    char name[9];

    int fen;

};

bool cmp1(struct student a,struct student b)

{


    return strcmp(a.id,b.id)<0;


}

bool cmp2(struct student a,struct student b)

{



    int tmp=strcmp(a.name,b.name);

   if(tmp!=0)

   {

       return tmp<0;

     }

     else

     {

       return strcmp(a.id,b.id)<0;

     }


}

bool cmp3(struct student a,struct student b)

{


    if(a.fen==b.fen)

        return strcmp(a.id,b.id)<0;

    else

        return a.fen<b.fen;


}

struct student st[100005];

int main()

{

    int i=1;

    int n;

    while(cin>>n)

    {

        int t;

        cin>>t;


        if(n==0)

            continue;


        printf("Case %d:\n",i++);

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

            scanf("%s%s%d",st[i].id,st[i].name,&st[i].fen);

        switch(t)

        {

        case 1:

            sort(st,st+n,cmp1);

            break;

        case 2:

            sort(st,st+n,cmp2);

            break;

        case 3:

            sort(st,st+n,cmp3);

            break;

        }

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

            printf("%s %s %d\n",st[i].id,st[i].name,st[i].fen);

    }

}


 

0.0分

0 人评分

  评论区

  • «
  • »