摘要: #include#define MaxSize 50struct student{ int num; char name[10]; int computer,english,math; double average;};int Count = 0;void new_student(struct student students[]);void search_student(struct student students[],int num);void output_student(struct student students[]);int mian(void){int choice,num; 阅读全文
posted @ 2013-11-20 22:31 plusfancy 阅读(212) 评论(0) 推荐(0) 编辑