首页
Python
Java
IOS
Andorid
NodeJS
JavaScript
HTML5
【
hdu1084
】的更多相关文章
hdu1084
#include<iostream> #include<algorithm> using namespace std; #define N 101 struct node { int score; //学生分数 int num; //学生做出的题目数目 char time[10]; //花费时间 } stu[N]; bool cmp(const node& a,const node& b) { if(a.num==b.num) return strcmp(a.tim…