C语言实现班档案管理系统课程设计
来源:本站原创|时间:2020-01-10|栏目:C语言|点击: 次
本文实例为大家分享了C语言班档案管理系统的具体代码,供大家参考,具体内容如下
做的挺长时间的课程设计,当作参考吧
#include<stdio.h> #include<stdlib.h> #include<string.h> #define N 20 struct student { long num; char name[20]; char sex[10]; int age; char bz[40]; struct student *next; }; int i,j,n,num2,num3,age3,k,m; char name3[20],sex3[20],bz3[20],ch; FILE *fp; int login() //登陆函数 { char key[20]; printf(" ********************请输入系统密码******************** "); do { scanf("%s",key); if((strcmp("a",key))==0) { printf(" password correct ,welcome ! "); return 1; //当密码正确时,返回1,进入系统 } printf(" password incorrect,please input again! "); }while(key!=1);//当返回值不为1时,重新输入密码,直到输入真确为止 system("cls"); } int menu() //菜单 { int c; printf(" **********欢迎进入通讯客户端!************ "); printf(" |—————1.录入学生的基本信息—————| "); printf(" |----------2.显示学生的基本信息----------| "); printf(" |----------3.保存学生的基本信息----------| "); printf(" |----------4.删除学生的基本信息----------| "); printf(" |----------5.修改学生的基本信息----------| "); printf(" |----------6.查询学生的基本信息----------| "); printf(" |—————7.退出系统——————————| "); printf(" 请选择您要进行的功能(0~7) "); scanf("%d",&c); return c; } struct student *creat() //录入信息函数 { struct student *head,*p1,*p2; n=0; p1=p2=(struct student *)malloc(sizeof(struct student)); head=NULL; printf("请输入学生信息学号,姓名,性别,年龄,备注(键入学生学号为0时结束) "); while(1) //为1表真,p2->next不为0; { scanf("%d",&p1->num); if(p1->num==0) //判断学生的学号是否为0,如果为0则停止输入数据; { break; } scanf("%s%s%d%s",p1->name,p1->sex,&p1->age,p1->bz); n=n+1; if(n==1) { head=p1; } else { p2->next=p1; } p2=p1; p1=(struct student *)malloc(sizeof(struct student)); } p2->next=NULL; system("cls"); return(head); } void print(struct student *head) //输出信息函数 { struct student *p; printf(" 这里有 %d 个学生的数据信息 ",n); p=head; if(head!=NULL) { do { printf(" 学号:%d 姓名:%s 性别:%s 年龄:%d 备注:%s ",p->num,p->name,p->sex,p->age,p->bz); p=p->next; }while(p!=NULL); } else { return 0; } printf(" "); } int save(struct student *p) //保存信息函数 { FILE *fp; if((fp=fopen("keshe.txt","wb"))==NULL) { printf("open file fail "); } fp=fopen("stud","wb"); do { fwrite(p,sizeof(struct student),1,fp); p=p->next; }while(p!=NULL); printf(" 保存成功! "); fclose(fp); return 0; } struct student *del(struct student *head) { struct student *p1,*p2; printf(" 请输入要删除学生的学号 "); scanf("%d",&num2); p1=head; if(head->num==num2) { head=head->next; free(p1); n--; } else { p2=head; while(p2->num!=num2&&p2->next!=NULL) { p1=p2; p2=p2->next; } if(p2->num==num2) { p1->next=p2->next; n--; } printf("delete:%ld ",num2); } return (head); } int mod(struct student *head); //修改信息函数 struct student *modify(struct student *head) { if(login()==0) { return 0; } else { struct student *p1; j=0; p1=(struct student *)malloc(sizeof(struct student)); printf(" 请输入你要更改的学号 "); scanf("%d",&num2); printf(" 学号 "); scanf("%d",&num3); printf(" 姓名 "); scanf("%s",name3); printf(" 性别 "); scanf("%s",sex3); printf(" 年龄 "); scanf("%d",&age3); printf(" 备注 "); scanf("%s",bz3); p1=head; if(head->num==num2) { head->num=num3; strcpy(head->name,name3); strcpy(head->sex,sex3); head->age=age3; strcpy(head->bz,bz3); j=1; } else { p1=head->next; if(p1!=NULL) { while(p1->num!=num2) { p1=p1->next; } p1->num=num2; strcpy(p1->name,name3); strcpy(p1->sex,sex3); p1->age=age3; strcpy(p1->bz,bz3); j=1; } } if(j==0) { printf(" 更改失败 "); } else { printf(" 更改成功 "); } } system("cls"); mod(head); } int mod(struct student *head) { printf(" 请选择 "); printf(" 1:按学号修改学生信息 "); printf(" 2:输出修改后的学生信息 "); printf(" 3:返回主菜单 "); scanf("%d",&m); switch(m) { case 1:head=modify(head);break; case 2:print(head);break; case 3:menu();break; default:printf(" input error! "); mod(head); } } int find(struct student *head); int find1(struct student *head) //以学号方式查找 { struct student *p1; p1=(struct student *)malloc(sizeof(struct student)); printf(" 请输入你要查询的学生学号 "); scanf("%d",&num2); p1=head; while(p1!=NULL) { if(p1->num==num2) { k=1; printf(" 学号:%d 姓名:%s 性别:%s 年龄:%d 备注:%s ",p1->num,p1->name,p1->sex,p1->age,p1->bz); break; } p1=p1->next; } if(k==0) { printf(" 没有查询到您要找的学生信息 "); } else { printf(" 这就是您要找的学生信息 "); } find(head); } int find2(struct student *head) //以姓名方式查找 { struct student *p1; p1=(struct student *)malloc(sizeof(struct student)); printf(" 请输入您要查询的学生姓名 "); scanf("%s",name3); p1=head; while(p1!=NULL) { if((strcmp(p1->name,name3))==0) { k=1; printf(" 学号:%d 姓名:%s 性别:%s 年龄:%d 备注:%s ",p1->num,p1->name,p1->sex,p1->age,p1->bz); break; } p1=p1->next; } if(k==0) { printf(" 没有找到该学生信息 "); } else { printf(" 这就是您要查询的学生信息 "); } find(head); } int find3(struct student *head) //以性别方式查找 { struct student *p1; p1=(struct student *)malloc(sizeof(struct student)); printf(" 请输入你要查询的学生的性别 "); scanf("%s",sex3); p1=head; while(p1!=NULL) { if((strcmp(p1->sex,sex3))==0) { k=1; printf(" 学号:%d 姓名:%s 性别:%s 年龄:%d 备注:%s ",p1->num,p1->name,p1->sex,p1->age,p1->bz); break; } p1=p1->next; } if(k==0) { printf(" 没有找到该学生信息 "); } else { printf(" 这就是您要查询的学生的信息 "); } find(head); } int find4(struct student *head) //以年龄方式查找 { struct student *p1; p1=(struct student *)malloc(sizeof(struct student)); printf(" 请输入您要查询的学生的年龄 "); scanf("%d",&age3); p1=head; while(p1!=NULL) { if(p1->age==age3) { k=1; printf(" 学号:%d 姓名:%s 性别:%s 年龄:%d 备注:%s ",p1->num,p1->name,p1->sex,p1->age,p1->bz); break; } p1=p1->next; } if(k==0) { printf(" 没有找到该学生的信息 "); } else { printf(" 这就是您要找的学生的信息 "); } find(head); } int find(struct student *head) { printf(" 请选择您要查询学生信息的方式 "); printf(" 1:按学生学号查询 "); printf(" 2:按学生姓名查询 "); printf(" 3:按学生性别查询 "); printf(" 4:按学生年龄查询 "); printf(" 5:返回主菜单 "); scanf("%d",&m); switch(m) { case 1:find1(head);break; case 2:find2(head);break; case 3:find3(head);break; case 4:find4(head);break; case 5:system("cls");menu();break; default:printf(" input error,please input again "); } } int main() //主函数 { struct student *phead; if(login()==0) { return 0; } printf(" "); while(1) { switch(menu()) { case 1:system("cls");phead=creat();break; case 2:system("cls");print(phead);break; case 3:system("cls");save(phead);break; case 4:system("cls");phead=del(phead);break; case 5:system("cls");mod(phead);break; case 6:system("cls");find(phead);break; case 7:system("cls");printf(" 欢迎使用,再见! ");return 0; default:printf(" 输入有错,请重新输入 "); } } }
更多学习资料请关注专题《管理系统开发》。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我们。
您可能感兴趣的文章
- 04-02c语言函数调用后清空内存 c语言调用函数删除字符
- 04-02c语言的正则匹配函数 c语言正则表达式函数库
- 04-02func函数+在C语言 func函数在c语言中
- 04-02c语言中对数函数的表达式 c语言中对数怎么表达
- 04-02c语言用函数写分段 用c语言表示分段函数
- 04-02c语言编写函数冒泡排序 c语言冒泡排序法函数
- 04-02c语言没有round函数 round c语言
- 04-02c语言分段函数怎么求 用c语言求分段函数
- 04-02C语言中怎么打出三角函数 c语言中怎么打出三角函数的值
- 04-02c语言调用函数求fibo C语言调用函数求阶乘
阅读排行
本栏相关
- 04-02c语言函数调用后清空内存 c语言调用
- 04-02func函数+在C语言 func函数在c语言中
- 04-02c语言的正则匹配函数 c语言正则表达
- 04-02c语言用函数写分段 用c语言表示分段
- 04-02c语言中对数函数的表达式 c语言中对
- 04-02c语言编写函数冒泡排序 c语言冒泡排
- 04-02c语言没有round函数 round c语言
- 04-02c语言分段函数怎么求 用c语言求分段
- 04-02C语言中怎么打出三角函数 c语言中怎
- 04-02c语言调用函数求fibo C语言调用函数求
随机阅读
- 08-05织梦dedecms什么时候用栏目交叉功能?
- 04-02jquery与jsp,用jquery
- 01-10SublimeText编译C开发环境设置
- 01-10delphi制作wav文件的方法
- 01-10C#中split用法实例总结
- 08-05DEDE织梦data目录下的sessions文件夹有什
- 01-11ajax实现页面的局部加载
- 01-11Mac OSX 打开原生自带读写NTFS功能(图文
- 08-05dedecms(织梦)副栏目数量限制代码修改
- 01-10使用C语言求解扑克牌的顺子及n个骰子