资源描述:
《c语言课程设计-学生信息管理系统.doc》由会员上传分享,免费在线阅读,更多相关内容在应用文档-天天文库。
1、#include#include#include#include#defineNULL0#defineLENsizeof(structstudent)structstudent{charname[20];longintnum;charsex[4];intage;charaddress[30];doubletele_num;charaihao[20];structstudent*next;};//定义一个结构题intTOTAL_NUM=0;//学生总数s
2、tructstudent*head=NULL;voidwelcome();//欢迎界面voidmainmenu();//主界面voidrecord();//记录数据voidinsert(structstudent*stu);//插入数据voiddisplay(structstudent*stu);//显示一个学生的信息voiddisplayAll();//显示所有学生的信息voidquery_by_num();//按学号查询学生信息voidreadData();//读取文件里学生的信息voidwriteData();//向文件写
3、入学生信息voidfreeAll();//清空链表内容voiddel();//删除学生信息voidchange();//更改学生信息voiddevise(structstudent*p);//选择更改内容intmain(void){welcome();//显示主菜单mainmenu();return0;}//显示欢迎信息voidwelcome(){printf("+----------------------------------------------------+");printf("
4、
5、");printf("
6、欢
7、迎使用网络工程学院信息安全092班学生信息管理系统
8、");printf("
9、
10、");printf("+----------------------------------------------------+");}//系统主菜单voidmainmenu(){intchoice;choice=-1;readData();printf("温馨提示:为保证您的操作得到保存,请按正常顺序退出系统^_^");do{printf("");printf("ttt---------------------
11、-----------------------");printf("ttt+信息安全092班学生信息管理系统
12、");printf("ttt--------------------------------------------");printf("ttt+[1]----录入学生信息
13、");printf("ttt+[2]----浏览学生信息
14、");printf("ttt+[3]----查询学生信息
15、");printf("ttt+[4]----删除学生信息
16、");pri
17、ntf("ttt+[5]----修改学生信息
18、");printf("ttt+[0]----退出系统
19、");printf("ttt+*·*·*·*·*·*·*·*·*·*·*·*·*·*·*
20、");printf("ttt--------------------------------------------");printf("请输入您的选择:");scanf("%d",&choice);switch(choice){case0:writeData();freeAll();exit(0);c
21、ase1:record();break;case2:displayAll();break;case3:query_by_num();break;case4:del();break;case5:change();break;default:printf("无效选项!");break;}}while(choice!=0);}//录入学生信息voidrecord(){structstudent*p0;p0=(structstudent*)malloc(LEN);printf("请输入学生的姓名:");scanf("%s",p0->
22、name);printf("请输入学生的学号:");scanf("%ld",&p0->num);printf("请输入学生的性别:");scanf("%s",p0->sex);printf("请输入学生的年龄:");scanf("%d",&p0->age);pr