摘要: http://pat.zju.edu.cn/contests/pat-practise/1028 1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <string.h> 4 #include <algorithm> 5 using namespace std; 6 struct Stu{ 7 char ID[7]; 8 char name[9]; 9 int score;10 }student[100002];11 int meth;12 bool cmp(struct Stu a,str 阅读全文
posted @ 2012-03-24 11:24 linyvxiang 阅读(284) 评论(0) 推荐(0)