• 大小: 7KB
    文件类型: .cpp
    金币: 1
    下载: 0 次
    发布日期: 2021-05-19
  • 语言: C/C++
  • 标签: C++  

资源简介

C++学籍管理系统,网上看到的,供大家一起共同分享学习。

资源截图

代码片段和文件信息

#include 
#include 
#include 
#include  
#include 
#include 
typedef struct STU{
char name[20];
char num[10];
int grade1;//3种不同成绩 
int grade2;
int grade3;
float ave;//均分 
struct STU *next;
}STU;
STU *head;

void creathead();//创建表头 
STU * mallocnode();//申请新节点 
int insertonenode(STU *t);//把节点移到链表尾部 
void readfile();//读入文件 
void savefile();//存档 
int getinformation(STU *t);//增加一个信息 
int outputinformation(STU *t);//输出一个节点的信息 
int sort(); //按学号从小到大排序 
void outputall(); //输出所有信息 
int output_name();  //按姓名输出信息 
int output_num(); //按学号输出学生信息 
int scaning(); //屏幕人机互动函数 
int del_single(); //按单一学号删除学生 
int chang_single(); //按学号修改学生 
int del_more();//按学号范围删除 

int main()
{
creathead();
readfile();
scaning();
}

int scaning() //屏幕人机互动函数 p
{

int a;
STU *p;
while(1)
{
start:
system(“cls“);
printf(“***********************学生学籍管理系统*****************************\n“); 
printf(“1.\t增加学生\n“);
printf(“2.\t删除学生\n“);
printf(“3.\t输出所有学生信息\n“);
printf(“4.\t查询学生信息\n“);
printf(“5.\t修改学生信息\n“);
printf(“6.\t存档\n“);
printf(“7.\t退出系统\n“);
a=getch();
while(a>‘7‘||a<‘1‘)
{
system(“cls“);
printf(“错误的选项“);
getch();
goto start;
}
switch(a)
{
case ‘1‘:{
system(“cls“);
 p=mallocnode();
getinformation(p);
insertonenode(p);
break;}
case ‘2‘:{
system(“cls“);
printf(“***********************学生学籍管理系统*****************************\n“); 
printf(“\t1.按学号删除“);
printf(“\t2.按学号区间删除\n“);
int c;
c=getch();
switch(c)
{
case ‘1‘:del_single();getch();break;
case ‘2‘:del_more();getch();break;
}
break;
}
case ‘3‘:{
system(“cls“);
outputall();
getch(); 
break;
}
case ‘4‘:{
system(“cls“);
printf(“***********************学生学籍管理系统*****************************\n“); 
printf(“\t1.按学号查询“);
printf(“\t2.按姓名查询“);
int b;
b=getch();
switch(b)
{
case ‘1‘:{
system(“cls“);
printf(“请输入学号:“);
output_num();
getch();
break;
}
case ‘2‘:{
system(“cls“);
printf(“请输入姓名:“);
output_name();
getch();
break;
}
}
break;
}
case ‘5‘ :{
system(“cls“);
chang_single();
getch();
break;
}
case ‘6‘:{
system(“cls“);
savefile();
getch();
free(head);
break;

case ‘7‘:{
exit(0);
break;

}
}
return 0;
}

void creathead()//创建表头 
{
STU *p;
p=(STU*)malloc(sizeof(struct STU));
p->next=NULL;
head=p;
}

STU * mallocnode()//建立一个新节点 
{
STU *p;
p=(STU*)malloc(sizeof(STU));
if (p==NULL)
return NULL;
int i;
for(i=0;i<20;i++)
p->name[i]=‘\0‘;
for(i=0;i<10;i++)
p->num[i]=‘\0‘;
p->grade1=0;
p->grade2=0;
p->grade3=0;
p->ave=0.0;
p->next=NULL;
return p;
}

int insertonenode(STU *t)//把节点移到链表尾部 
{
STU *p;
p=head;
while(p->next)
{
p=p->next;

评论

共有 条评论