欢迎来到天天文库
浏览记录
ID:61773822
大小:85.50 KB
页数:26页
时间:2021-03-20
《学生信息管理系统(C语言基于链表文件).doc》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、......#include#include#include#include#include#defineLENsizeof(structstudent)#defineDAT_FILENAME"Information.txt"/**********************定义数据结构********************/structdate{intyear;intmonth;intday;};structstudent{intID;charName[8];.
2、..专业........intage;charxb;chartelephone[15];charaddress[40];structdatebirthday;charemail[40];structstudent*next;};/*************************函数原型*********************/voidDispMainMenu();voidDisplayInformation(structstudent*head);structstudent*FindstudentID(structstudent*head,intfind
3、ID);structstudent*FindstudentName(structstudent*head,charfindname[]);structstudent*InformationInput(structstudent*head);voidQueryInformation(structstudent*head);structstudent*EditInformation(structstudent*head);structstudent*Insert(structstudent*head,structstudent*p);voidSave(struc
4、tstudent*head);structstudent*Read(structstudent*head);structstudent*Delete(structstudent*head,intfindID);...专业........structstudent*Add(structstudent*head);voidHelp();/************************显示主菜单***************************/voidDispMainMenu(){printf("******************************
5、***学生信息管理系统******************************");printf("");printf("tttt1--信息录入");printf("");printf("tttt2--信息修改");printf("");printf("tttt3--信息查询");printf("");printf("tttt4--保存数据到文件");printf("");printf("tttt5--打开数据文件");printf("");printf("tt
6、tt6--文件追加");...专业........printf("");printf("tttt7--帮助");printf("");printf("tttt0--退出");printf("");printf("友情提示:初次使用请先阅读帮助");printf("*******************************************************************************");printf("请选择(0-7):");/*显示主菜单*/}/************
7、*************************帮助**************************************************/voidHelp(){printf("ttt欢迎进入帮助系统!");printf("t1.请按照主菜单提示选择所需执行功能的数字代号!");printf("t2.所有文件请按照规输入");printf("t3.刚开始执行程序时若需要文本文件里的数据,请先进行读取文件信息!");printf("t4.修改信息以后,请切记需要保存!");printf("");..
8、.专业........}/*************
此文档下载收益归作者所有