程羽


私信TA

用户名:dotcpp0595792

访问量:1297

签 名:

等  级
排  名 4755
经  验 1642
参赛次数 0
文章发表 24
年  龄 0
在职情况 学生
学  校 长江大学
专  业

  自我简介:

解题思路:

注意事项:

参考代码:

#include <stdio.h>

#include <string.h>

 struct student{

    char name[200];

    int age;

    int score;

}stu[1005];

int main()

{

    int n;

    struct student t;

    while(~scanf("%d", &n))

    {

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

        scanf("%s%d%d", stu[i].name, &stu[i].age, &stu[i].score);

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

        for (int j = 0; j < n - 1 - i; j++)

        {

            if (stu[j].score > stu[j + 1].score)

            {

                t = stu[j];

                stu[j] = stu[j + 1];

                stu[j + 1] = t;

            }

            else if (stu[j].score == stu[j + 1].score)

            {

                if (strcmp(stu[j].name,stu[j + 1].name) > 0)

                {

                    t = stu[j];

                    stu[j] = stu[j + 1];

                    stu[j + 1] = t;

                }

                else if (strcmp(stu[j].name,stu[j+1].name) == 0)

                {

                    if (stu[j].age > stu[j + 1].age)

                    {

                        t = stu[j];

                        stu[j] = stu[j + 1];

                        stu[j + 1] = t;

                    }

                }

            }

        }

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

        printf("%s %d %d\n", stu[i].name, stu[i].age, stu[i].score);

    }

    return 0;

}


 

0.0分

0 人评分

  评论区

  • «
  • »