- 题目描述:
-
用一维数组存储学号和成绩,然后,按成绩排序输出。
- 输入:
-
输入第一行包括一个整数N(1<=N<=100),代表学生的个数。接下来的N行每行包括两个整数p和q,分别代表每个学生的学号和成绩。
- 输出:
-
按照学生的成绩从小到大进行排序,并将排序后的学生信息打印出来。如果学生的成绩相同,则按照学号的大小进行从小到大排序。
- 样例输入:
-
3 1 90 2 87 3 92
- 样例输出:
-
2 87 1 90 3 92
#include<iostream> #include<algorithm> using namespace std; struct student{ int id; int score; }; bool cmp(student a,student b){ if(a.score!=b.score) return a.score<b.score; else return a.id<b.id; } student s[100]; int main(){ int n,i; while(cin>>n) { for(i=0;i<n;i++){ cin>>s[i].id>>s[i].score; } sort(s,s+n,cmp); for(i=0;i<n;i++){ cout<<s[i].id<<" "<<s[i].score<<endl; } } return 0; }
原文地址:https://www.cnblogs.com/bernieloveslife/p/9735232.html
时间: 2024-10-10 04:10:42