摘要:
http://ac.jobdu.com/problem.php?cid=1040&pid=17题目描述:输入N个学生的信息,然后进行查询。输入:输入的第一行为N,即学生的个数(N
#include #include using namespace std; const int N=1003;
typedef struct STU
{ char no[8]; char name[100],sex[6]; int age;
}STU;
STU stu[N]; bool cmp(STU m1, STU m2)
{ return strcmp(m1.no,m2.no)high) r... 阅读全文
posted @ 2013-03-02 12:08
cjweffort
阅读(175)
评论(0)
推荐(0)