解题思路: 定义结构体 ,使用qsort函数进行排序。需要编写一个cmp比较函数,传入结构体指针,主要是修改结构体里面的内容
注意事项: name 要100往上 ,多组输入不是一组,还有就是输出一组数据要换行
参考代码:
#include<stdio.h>
#include <string.h>
struct Student{
char str1[101];
int year;
int score;
};
int cmp(void const *a,void const *b)
{
struct Student *student = (struct Student *)a;
struct Student *student1 = (struct Student *)b;
if(student->score==student1->score)
{
if(strcmp(student->str1,student1->str1)!=0)
{
return strcmp(student->str1,student1->str1);
}else {
return student->year-student1->year;
}
}else{
return student->score-student1->score;
}
}
int main()
{
int m;
while( scanf("%d",&m)!=EOF)
{ struct Student student[1000];
for(int i=0;i<m;i++)
{
scanf("%s %d %d",student[i].str1,&student[i].year,&student[i].score);
}
qsort(student,m,sizeof(struct Student),cmp);
for(int i=0;i<m;i++)
{
printf("%s %d %d\n",student[i].str1,student[i].year,student[i].score);
}
}
return 0;
}
0.0分
0 人评分
C语言网提供由在职研发工程师或ACM蓝桥杯竞赛优秀选手录制的视频教程,并配有习题和答疑,点击了解:
一点编程也不会写的:零基础C语言学练课程
解决困扰你多年的C语言疑难杂症特性的C语言进阶课程
从零到写出一个爬虫的Python编程课程
只会语法写不出代码?手把手带你写100个编程真题的编程百练课程
信息学奥赛或C++选手的 必学C++课程
蓝桥杯ACM、信息学奥赛的必学课程:算法竞赛课入门课程
手把手讲解近五年真题的蓝桥杯辅导课程
发表评论 取消回复