Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
59728 lihaocheng 期中考试成绩排序 C++ 通过 0 MS 252 KB 455 2024-12-27 19:04:33

Tests(1/1):


#include <bits/stdc++.h> using namespace std; struct r{ int s; string name; }; r a[61]; bool cmp(r x,r y){ if(x.s>y.s ){ return 1; } else if(x.s<y.s){ return 0; } else{ if(x.name<y.name){ return 1; } else return 0; } } int main(){ int n; cin>>n; for(int i=0;i<n;i++){ cin>>a[i].name>>a[i].s; } sort(a,a+n,cmp); for(int i=0;i<n;i++){ cout<<a[i].name<<" "<<a[i].s<<endl; } return 0; }


测评信息: