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