C语言程序设计——设计一个学生管理系统(完美运行的程序(●‘◡‘●))
Posted 晚风(●•σ )
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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)
case 1:
add_student(&WLW);//添加学生
break;
case 2:
show_student(&WLW);//显示学生
break;
case 3:
find_student(&WLW);//查询学生
break;
case 4:
remove_student(&WLW);//删除学生
break;
case 5:
change_student(&WLW);//修改学生
break;
case 6:
return 0;//退出程序
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为当前班级的人数,如下代码:
//显示学生信息
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)
case 1:
printf("请输入新的学生姓名:\\n");
scanf("%s",WLW->st[ret].name);//输出的代表首地址,所以不需要&取地址
break;
case 2:
printf("请输入新的学生年龄:\\n");
scanf("%d",&WLW->st[ret].age);
break;
case 3:
printf("请输入新的学生id:\\n");
scanf("%d",&WLW->st[ret].id);
break;
case 4:
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()//打印主菜单函数
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);
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");
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)
case 1:
printf("请输入新的学生姓名:\\n");
scanf("%s",WLW->st[ret].name);//输出的代表首地址,所以不需要&取地址
break;
case 2:
printf("请输入新的学生年龄:\\n");
scanf("%d",&WLW->st[ret].age);
break;
case 3:
printf("请输入新的学生id:\\n");
scanf("%d",&WLW->st[ret].id);
break;
case 4:
printf("请输入新的学生性别:\\n");
scanf("%s",WLW->st[ret]求用C语言编写一个简单的学生信息管理程序和课程设计报告