#include<iostream> #include<iomanip> #include<algorithm> using namespace std; struct student { char name[11]; int solve; int cost; }stu[10000]; bool cmp(student a,student b) { if(a.solve!=b.solve) if(a.solve>b.solve) return true; else return
杭电ACM 第2093题
最新推荐文章于 2019-11-10 12:38:37 发布
这篇博客介绍了杭电ACM竞赛中的第2093题,提供了一种解决方案。内容包括使用C++编写的学生成绩处理程序,该程序可以读取学生姓名、解题数和额外费用,按照解题数降序和姓名字母顺序排序,并输出结果。
摘要由CSDN通过智能技术生成