C语言如何实现班档案管理系统课程设计

这篇文章主要介绍C语言如何实现班档案管理系统课程设计,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!

本文实例为大家分享了C语言班档案管理系统的具体代码,供大家参考,具体内容如下

C语言如何实现班档案管理系统课程设计

#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#defineN20
structstudent
{
longnum;
charname[20];
charsex[10];
intage;
charbz[40];
structstudent*next;
};
inti,j,n,num2,num3,age3,k,m;
charname3[20],sex3[20],bz3[20],ch;
FILE*fp;
intlogin()//登陆函数
{
charkey[20];
printf("\t********************请输入系统密码********************\n");
do
{
scanf("%s",key);
if((strcmp("a",key))==0)
{
printf("\tpasswordcorrect,welcome!\n");
return1;//当密码正确时,返回1,进入系统
}
printf("\tpasswordincorrect,pleaseinputagain!\n");
}while(key!=1);//当返回值不为1时,重新输入密码,直到输入真确为止
system("cls");
}
intmenu()//菜单
{
intc;
printf("\t\t**********欢迎进入通讯客户端!************\n\n");
printf("\t\t|—————1.录入学生的基本信息—————|\n");
printf("\t\t|----------2.显示学生的基本信息----------|\n");
printf("\t\t|----------3.保存学生的基本信息----------|\n");
printf("\t\t|----------4.删除学生的基本信息----------|\n");
printf("\t\t|----------5.修改学生的基本信息----------|\n");
printf("\t\t|----------6.查询学生的基本信息----------|\n");
printf("\t\t|—————7.退出系统——————————|\n");
printf("\t\t请选择您要进行的功能(0~7)");
scanf("%d",&c);
returnc;
}
structstudent*creat()//录入信息函数
{
structstudent*head,*p1,*p2;
n=0;
p1=p2=(structstudent*)malloc(sizeof(structstudent));
head=NULL;
printf("请输入学生信息学号,姓名,性别,年龄,备注(键入学生学号为0时结束)\n");
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=(structstudent*)malloc(sizeof(structstudent));
}
p2->next=NULL;
system("cls");
return(head);
}
voidprint(structstudent*head)//输出信息函数
{
structstudent*p;
printf("\t\t这里有%d个学生的数据信息\n",n);
p=head;
if(head!=NULL)
{
do
{
printf("\t\t学号:%d\t姓名:%s\t性别:%s\t年龄:%d\t备注:%s\n",p->num,p->name,p->sex,p->age,p->bz);
p=p->next;
}while(p!=NULL);
}
else
{
return0;
}
printf("\n");
}
intsave(structstudent*p)//保存信息函数
{
FILE*fp;
if((fp=fopen("keshe.txt","wb"))==NULL)
{
printf("openfilefail\n");
}
fp=fopen("stud","wb");
do
{
fwrite(p,sizeof(structstudent),1,fp);
p=p->next;
}while(p!=NULL);
printf("\t\t\t保存成功!\n");
fclose(fp);
return0;
}
structstudent*del(structstudent*head)
{
structstudent*p1,*p2;
printf("\t\t请输入要删除学生的学号\n");
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\n",num2);
}
return(head);
}
intmod(structstudent*head);//修改信息函数
structstudent*modify(structstudent*head)
{
if(login()==0)
{
return0;
}
else
{
structstudent*p1;
j=0;
p1=(structstudent*)malloc(sizeof(structstudent));
printf("\t\t\t请输入你要更改的学号\n");
scanf("%d",&num2);
printf("\t\t\t学号\n");
scanf("%d",&num3);
printf("\t\t\t姓名\n");
scanf("%s",name3);
printf("\t\t\t性别\n");
scanf("%s",sex3);
printf("\t\t\t年龄\n");
scanf("%d",&age3);
printf("\t\t\t备注\n");
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("\t\t\t更改失败\n");
}
else
{
printf("\t\t\t更改成功\n");
}
}
system("cls");
mod(head);
}
intmod(structstudent*head)
{
printf("\t\t\t请选择\n");
printf("\t\t\t1:按学号修改学生信息\n");
printf("\t\t\t2:输出修改后的学生信息\n");
printf("\t\t\t3:返回主菜单\n");
scanf("%d",&m);
switch(m)
{
case1:head=modify(head);break;
case2:print(head);break;
case3:menu();break;
default:printf("\t\t\tinputerror!\n");
mod(head);
}
}
intfind(structstudent*head);
intfind1(structstudent*head)//以学号方式查找
{
structstudent*p1;
p1=(structstudent*)malloc(sizeof(structstudent));
printf("\t\t\t请输入你要查询的学生学号\n");
scanf("%d",&num2);
p1=head;
while(p1!=NULL)
{
if(p1->num==num2)
{
k=1;
printf("\t\t\t学号:%d\t姓名:%s\t性别:%s\t年龄:%d\t备注:%s\n\n",p1->num,p1->name,p1->sex,p1->age,p1->bz);
break;
}
p1=p1->next;
}
if(k==0)
{
printf("\t\t\t没有查询到您要找的学生信息\n\n");
}
else
{
printf("\t\t\t这就是您要找的学生信息\n\n");
}
find(head);
}
intfind2(structstudent*head)//以姓名方式查找
{
structstudent*p1;
p1=(structstudent*)malloc(sizeof(structstudent));
printf("\t\t\t请输入您要查询的学生姓名\n");
scanf("%s",name3);
p1=head;
while(p1!=NULL)
{
if((strcmp(p1->name,name3))==0)
{
k=1;
printf("\t\t\t学号:%d\t姓名:%s\t性别:%s\t年龄:%d\t备注:%s\n\n",p1->num,p1->name,p1->sex,p1->age,p1->bz);
break;
}
p1=p1->next;
}
if(k==0)
{
printf("\t\t\t没有找到该学生信息\n\n");
}
else
{
printf("\t\t\t这就是您要查询的学生信息\n\n");
}
find(head);
}
intfind3(structstudent*head)//以性别方式查找
{
structstudent*p1;
p1=(structstudent*)malloc(sizeof(structstudent));
printf("\t\t\t请输入你要查询的学生的性别\n");
scanf("%s",sex3);
p1=head;
while(p1!=NULL)
{
if((strcmp(p1->sex,sex3))==0)
{
k=1;
printf("\t\t\t学号:%d\t姓名:%s\t性别:%s\t年龄:%d\t备注:%s\n\n",p1->num,p1->name,p1->sex,p1->age,p1->bz);
break;
}
p1=p1->next;
}
if(k==0)
{
printf("\t\t\t没有找到该学生信息\n\n");
}
else
{
printf("\t\t\t这就是您要查询的学生的信息\n\n");
}
find(head);
}
intfind4(structstudent*head)//以年龄方式查找
{
structstudent*p1;
p1=(structstudent*)malloc(sizeof(structstudent));
printf("\t\t\t请输入您要查询的学生的年龄\n");
scanf("%d",&age3);
p1=head;
while(p1!=NULL)
{
if(p1->age==age3)
{
k=1;
printf("\t\t\t学号:%d\t姓名:%s\t性别:%s\t年龄:%d\t备注:%s\n\n",p1->num,p1->name,p1->sex,p1->age,p1->bz);
break;
}
p1=p1->next;
}
if(k==0)
{
printf("\t\t\t没有找到该学生的信息\n\n");
}
else
{
printf("\t\t\t这就是您要找的学生的信息\n\n");
}
find(head);
}
intfind(structstudent*head)
{
printf("\t\t\t请选择您要查询学生信息的方式\n");
printf("\t\t\t1:按学生学号查询\n");
printf("\t\t\t2:按学生姓名查询\n");
printf("\t\t\t3:按学生性别查询\n");
printf("\t\t\t4:按学生年龄查询\n");
printf("\t\t\t5:返回主菜单\n");
scanf("%d",&m);
switch(m)
{
case1:find1(head);break;
case2:find2(head);break;
case3:find3(head);break;
case4:find4(head);break;
case5:system("cls");menu();break;
default:printf("\t\t\tinputerror,pleaseinputagain\n");
}
}
intmain()//主函数
{
structstudent*phead;
if(login()==0)
{
return0;
}

printf("\n");
while(1)
{
switch(menu())
{
case1:system("cls");phead=creat();break;
case2:system("cls");print(phead);break;
case3:system("cls");save(phead);break;
case4:system("cls");phead=del(phead);break;
case5:system("cls");mod(phead);break;
case6:system("cls");find(phead);break;
case7:system("cls");printf("\t\t\t欢迎使用,再见!\n");return0;
default:printf("\t\t\t输入有错,请重新输入\n");
}
}
}

以上是“C语言如何实现班档案管理系统课程设计”这篇文章的所有内容,感谢各位的阅读!希望分享的内容对大家有帮助,更多相关知识,欢迎关注恰卡编程网行业资讯频道!

发布于 2021-05-30 14:08:22
收藏
分享
海报
0 条评论
178
上一篇:JavaScript如何实现动态数字时钟 下一篇:python如何爬取影视网站下载链接
目录

    0 条评论

    本站已关闭游客评论,请登录或者注册后再评论吧~

    忘记密码?

    图形验证码