三九宝宝网宝宝教育写作范文

哪个高手帮个忙设计C程序学分管理系统

01月07日 编辑 39baobao.com

#include "stdio.h" #include "ctype.h" #include "conio.h" #include "stdlib.h" #include "process.h" #include "string.h" /*Creat student's information data type*/ struct stuinfo{ char num[9]; int base; int major; int optional; int humanity; int exp; }; /*Creat link node data type and creat head, rear and current pointer*/ struct LinkNode{ struct stuinfo data; struct LinkNode *next; }*first,*end,*current; char menu_select(void);/*menu function*/ void EnterCredit(void);/*insert a information*/ void DisplayOne(void);/*display a information*/ void DisplayAll(void);/*display all the information*/ void DisplayClass(void);/*display all the information in the same class*/ void Delete(void);/*delete one information*/ void Modify(void);/*modify one information*/ void Sort(); void SortByBase(); void SortByMajor(); void SortByOptional(); void SortByHum(); void SortByExp(); void Statistic(); int SaveData();/*save the information to binary file and txt file*/ int LoadData();/*load information*/ int IsValid(struct stuinfo);/*test the data whether valid or not*/ void DestroyLink(void);/*destroy the link list*/

一次写不完,可以的话加Q 58532746 第二页里的程序代码那上面有点乱 你再看着整理一下吧

推荐阅读
图文推荐