欢迎来到入门教程网!

C语言

当前位置:主页 > 软件编程 > C语言 >

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("			输入有错,请重新输入
");
 }
 }
}

更多学习资料请关注专题《管理系统开发》。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我们。

上一篇:C语言实现飞机票务系统

栏    目:C语言

下一篇:C语言实现航班售票系统 C语言实现航班管理系统

本文标题:C语言实现班档案管理系统课程设计

本文地址:https://www.xiuzhanwang.com/a1/Cyuyan/24.html

网页制作CMS教程网络编程软件编程脚本语言数据库服务器

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:835971066 | 邮箱:835971066#qq.com(#换成@)

Copyright © 2002-2020 脚本教程网 版权所有