资源描述:
《基于Linux系统的学生信息管理系统.doc》由会员上传分享,免费在线阅读,更多相关内容在工程资料-天天文库。
1、程序设计报告基于Linux系统的学生信息管理系统功能:在Linux系统下,实现学生信息的管理功能开发环境:LinuxUbuntu12.04,Intel64位处理器开发语言:C语言运行环境:普通PC机编译环境:gccMakefile本系统对学生信息进行管理,分有学生、老师、老板三种板块,不同权限的用户登录会进入不同的界面进行操作。系统主界面分为注册,登录,忘记密码,关于以及退出,如果没有这个系统的账号和密码可以进行注册,注册时候会问你要注册的权限是什么,并且根据你注册的权限进去相应的界面。登录时候需要输入账号以及密码,如果账号密码均正确
2、将进入账号所属权限的界面;如果有错误,会根据错误类型提醒用户。忘记密码可通过管理员用户查看进行找回。关于则是一点具体信息。退出则会退出此程序。以下具体介绍每个权限中的具体功能:1.学生界面:学生的功能包括查看学生信息,考试,提交试卷,修改密码,返回以及退出的功能。将各个函数封装成一个box,然后在主函数中进行调用,具体代码如下:①box中的各函数:#include"stu_box.h"#include#include#includestaticvoidinit_node(str
3、uctstu_info*head,structstu_infoinfo){strcpy(head->name,info.name);strcpy(head->sex,info.sex);head->age=info.age;strcpy(head->cid,info.cid);strcpy(head->tel,info.tel);strcpy(head->addr,info.addr);strcpy(head->object,info.object);head->next=head;head->prev=head;}staticvoi
4、d__add(structstu_info*a,structstu_info*new,structstu_info*b){a->next=new;new->next=b;b->prev=new;new->prev=a;}staticintadd(structstu_info*head,structstu_infoinfo){structstu_info*new=NULL;new=(structstu_info*)malloc(sizeof(structstu_info));init_node(new,info);__add(head,
5、new,head->next);return1;}staticintread_from_stdin(structstu_box*box){structstu_info*head=box->head;structstu_infoinfo;printf("tttttt请输入学生信息:");printf("tttttt例如:张山男23上海市嵌入式tttttt");scanf("%s%s%d%s%s%s%s",info.name,info.sex,&info.age,info.cid,info.te
6、l,info.addr,info.object);add(head,info);return1;}staticintread_from_file(structstu_box*box){structstu_info*head=box->head;structstu_infoinfo;//1.fopenFILE*fp=NULL;fp=fopen("dat/stu_info.dat","r+");if(fp==NULL){perror("fopen");return-1;}while((fscanf(fp,"%s%s%d%s%s%s%s",
7、info.name,info.sex,&info.age,info.cid,info.tel,info.addr,info.object))!=EOF){add(head,info);}fclose(fp);return0;}staticintedit(structstu_box*box){return1;}staticintdisplay(structstu_box*box){structstu_info*tmp=box->head;for(tmp=box->head->next;tmp!=box->head;tmp=tmp->ne
8、xt){printf("tttt%st%st%dt%st%st%st%s",tmp->name,tmp->sex,tmp->age,tmp->cid,tmp->tel,tmp->addr,tmp-