C语⾔程序设计——设计⼀个学⽣管理系统(完美运⾏的程序(●‘◡‘●))⽬录
⼀、设计⽬的
通过c语⾔设计⼀个学⽣管理系统,要求有直观的主菜单,可以录⼊学⽣的信息,实现添加学⽣信息、显⽰学⽣信息、查学⽣信息、删除学⽣信息、修改学⽣信息以及退出等功能。
⼆、原理及相关功能
(⼀)基本框架
1、⾸先因为学⽣有以下⼏个基本信息:姓名、年龄、学号、性别,依次由name、age、id和sex来表⽰,所以可以通过结构体实
现,struct语句定义存储不同类型的数据项,定义⼀个结构体名为student,⽤于存储每个学⽣的信息,另外定义⼀个结构体名为
class_room班级,它包含了结构体student的变量初始化st,⽤于存储学⽣以及当前班级⼈数,且定义学⽣最⼤⼈数为60,如下代码:
#define MAX 60//定义MAX最⼤值为60
struct student{
char name[20];
int age;
int id;
char sex[10];
};
struct class_room{
struct student st[MAX];//定义多个学⽣
int n;//当前班级的⼈数
};
2、由于是显⽰⼀个管理系统,所以我们设计⼀个主菜单,通过定义⼀个函数printf_menu()来实现这个功能,如下代码:
//打印主菜单函数
void printf_menu()//打印主菜单函数
{
printf("        学⽣管理系统        \n");
printf("----------------------------\n");
printf("|1、添加学⽣信息            |\n");
printf("|2、显⽰所有学⽣信息        |\n");
printf("|3、查询学⽣信息            |\n");
printf("|4、删除学⽣信息            |\n");
printf("|5、修改学⽣信息            |\n");
printf("|6、退出                    |\n");
printf("----------------------------\n");
printf("请输⼊相应的序号选择!      \n");
}
3、因为要通过输⼊相应的序号来选择相应的功能,所以可以在主函数中通过⼀个switch()语句来实现,若要使程序⼀直执⾏下去,通过⽤户输⼊退出才退出程序,即设置⼀个while(1)⽆限循环下去,另外还要设置⼀个loop语句,通过goto语句,即若输⼊错误的序号即跳到选择序号的页⾯。
访问结构的成员,通过使⽤运算符.来实现,即WLW.n=0,表⽰初始化班级WLW的成员n,⽽&WLW表⽰取WLW的地址,取出其对应存储空间的值,即存储的学⽣,另外若想使⽤指向该结构的指针来访问结构体,通过操作符->实现。
如以下代码:
//主函数
int main()
{
struct class_room WLW;//定义⼀个班级为WLW存储学⽣
WLW.n=0;//初始化,学⽣⼈数为0
while(1)//⽆限循环
{
loop:
printf_menu();//调⽤主菜单函数输出主菜单
int choose;//定义⼀个序号
scanf("%d",&choose);
switch(choose)
{
case1:
add_student(&WLW);//添加学⽣
break;
case2:
show_student(&WLW);//显⽰学⽣
break;
case3:
find_student(&WLW);//查询学⽣
break;
case4:
remove_student(&WLW);//删除学⽣
break;
case5:
change_student(&WLW);//修改学⽣
break;
case6:
return0;//退出程序
default://若输出错误的序号,则跳转⾄重新输出
printf("输出错误,请重新输⼊!\n");
goto loop;
}
}
}
(⼆)功能实现
1、定义⼀个add_student()函数添加学⽣信息,参数为struct class_room *WLW,即结构体指针变量。姓名和性别由于是字符串类型,所以scanf()中通过%s格式符表⽰,年龄和id它们的地址是班级WLW当前学⽣的相应信息,由于数组名代表⾸地址这⾥不⽤&,另外每次添加后,当前班级的⼈数n++,如下代码:
//添加学⽣信息
void add_student(struct class_room *WLW)
{
printf("请输⼊学⽣的姓名:\n");
scanf("%s",WLW->st[WLW->n].name);//数组名代表⾸地址
printf("请输⼊学⽣的年龄:\n");
scanf("%d",&WLW->st[WLW->n].age);//取变量的地址
printf("请输⼊学⽣的id:\n");
scanf("%d",&WLW->st[WLW->n].id);
printf("请输⼊学⽣的性别:\n");
scanf("%s",WLW->st[WLW->n].sex);
WLW->n++;//班级⼈数加⼀
}
2、定义⼀个show_student()函数显⽰学⽣信息,即显⽰当前班级的所有学⽣信息,其中WLW->n为当前班级的⼈数,如下代码:
//显⽰学⽣信息
c++string类型
void show_student(struct class_room *WLW)
{
int i;
for(i=0;i<WLW->n;i++)//WLW->n为当前班级的⼈数
{
printf("the %d student name is %s\n",i+1,WLW->st[i].name);
printf("the %d student age is %d\n",i+1,WLW->st[i].age);
printf("the %d student id is %d\n",i+1,WLW->st[i].id);
printf("the %d student sex is %s\n",i+1,WLW->st[i].sex);
}
}
3、定义⼀个find_student()函数查学⽣信息,通过输⼊学⽣id查学⽣的信息,若存在则通过循环依次输出该学⽣的信息:
//查学⽣
int find_student(struct class_room *WLW)
{
int id,i;
printf("请输⼊要查的学⽣id:\n");
scanf("%d",&id);
for(i=0;i<WLW->n;i++)
{
if(id==WLW->st[i].id)
{
printf("the student is exist!\n");
printf("the %d student name is %s\n",i+1,WLW->st[i].name);
printf("the %d student age is %d\n",i+1,WLW->st[i].age);
printf("the %d student id is %d\n",i+1,WLW->st[i].id);
printf("the %d student sex is %s\n",i+1,WLW->st[i].sex);
return i;
}
}
printf("the student is not exist!\n");
return-1;
}
4、定义⼀个remove_student()函数删除学⽣信息,这⾥⾸先定义⼀个参数ret,并调⽤find_student(WLW)查要删除的学⽣是否在其中,如果返回值为-1,则进⾏覆盖,即要删除的学⽣信息被后⾯的学⽣信息所覆盖,另外其中由于于是字符串类型复制时通过使⽤头⽂件string.h中的strcpy复制函数从⽽实现覆盖的功能,然后当前班级学⽣⼈数减⼀:
/
/删除指定学⽣
void remove_student(struct class_room *WLW){
int ret,i;
ret=find_student(WLW);
if(ret!=-1)
{
for(i=ret;i<WLW->n-1;i++)
{
strcpy(WLW->st[i].name,WLW->st[i+1].name);//由于是字符串类型复制使⽤头⽂件string.h中的strcpy复制函数
WLW->st[i].age=WLW->st[i+1].age;
WLW->st[i].id=WLW->st[i+1].id;
strcpy(WLW->st[i].sex,WLW->st[i+1].sex);
}
WLW->n--;
}
printf("该学⽣已经删除成功!\n");
}
5、定义⼀个change_student()函数修改学⽣信息,因为学⽣学习有四项,所以这⾥通过switch语句、goto语句来实现,定义ret参数调⽤find_student(WLW)查要删除的学⽣是否在其中,然后再修改:
//修改学⽣信息
void change_student(struct class_room *WLW)
{
int ret,choose;
ret=find_student(WLW);
if(ret!=-1)
{
loop1:
printf("修改学⽣信息的哪⼀项?\n");
printf("1、姓名\n");
printf("2、年龄\n");
printf("3、id\n");
printf("4、性别\n");
scanf("%d",&choose);
switch(choose)
{
case1:
printf("请输⼊新的学⽣姓名:\n");
scanf("%s",WLW->st[ret].name);//输出的代表⾸地址,所以不需要&取地址
break;
case2:
printf("请输⼊新的学⽣年龄:\n");
scanf("%d",&WLW->st[ret].age);
break;
case3:
printf("请输⼊新的学⽣id:\n");
scanf("%d",&WLW->st[ret].id);
break;
case4:
printf("请输⼊新的学⽣性别:\n");
scanf("%s",WLW->st[ret].sex);
break;
default:
printf("输出错误,请重新输⼊!\n");
goto loop1;
}
}
}
三、完整代码
以下是完整的程序代码:
/*学⽣管理系统*/
#include<stdio.h>
#include<string.h>//包含头⽂件string.h
#define MAX 60//定义MAX最⼤值为60
struct student{
char name[20];
int age;
int id;
char sex[10];
};
struct class_room{
struct student st[MAX];//定义多个学⽣
int n;//当前班级的⼈数
};
void printf_menu()//打印主菜单函数
void printf_menu()//打印主菜单函数
{
printf("        学⽣管理系统        \n");
printf("----------------------------\n");
printf("|1、添加学⽣信息            |\n");
printf("|2、显⽰所有学⽣信息        |\n");
printf("|3、查询学⽣信息            |\n");
printf("|4、删除学⽣信息            |\n");
printf("|5、修改学⽣信息            |\n");
printf("|6、退出                    |\n");
printf("----------------------------\n");
printf("请输⼊相应的序号选择!      \n");
}
void add_student(struct class_room *WLW)//添加学⽣信息,其中struct class_room *WLW为结构体指针{
printf("请输⼊学⽣的姓名:\n");
scanf("%s",WLW->st[WLW->n].name);//数组名代表⾸地址
printf("请输⼊学⽣的年龄:\n");
scanf("%d",&WLW->st[WLW->n].age);//取变量的地址
printf("请输⼊学⽣的id:\n");
scanf("%d",&WLW->st[WLW->n].id);
printf("请输⼊学⽣的性别:\n");
scanf("%s",WLW->st[WLW->n].sex);
WLW->n++;//班级⼈数加⼀
}
void show_student(struct class_room *WLW)//显⽰所有学⽣信息
{
int i;
for(i=0;i<WLW->n;i++)//WLW->n为当前班级的⼈数
{
printf("the %d student name is %s\n",i+1,WLW->st[i].name);//第⼀个学⽣
printf("the %d student age is %d\n",i+1,WLW->st[i].age);
printf("the %d student id is %d\n",i+1,WLW->st[i].id);
printf("the %d student sex is %s\n",i+1,WLW->st[i].sex);
}
}
int find_student(struct class_room *WLW)//查指定学⽣
{
int id,i;
printf("请输⼊要查的学⽣id:\n");
scanf("%d",&id);
for(i=0;i<WLW->n;i++)
{
if(id==WLW->st[i].id)
{
printf("the student is exist!\n");
printf("the %d student name is %s\n",i+1,WLW->st[i].name);
printf("the %d student age is %d\n",i+1,WLW->st[i].age);
printf("the %d student id is %d\n",i+1,WLW->st[i].id);
printf("the %d student sex is %s\n",i+1,WLW->st[i].sex);
return i;
}
}
printf("the student is not exist!\n");
return-1;
}
void remove_student(struct class_room *WLW)//删除指定学⽣
{
int ret,i;
ret=find_student(WLW);

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。