【C++】学生管理系统一道非常经典的C语言题目,用C++实现 题目如下:
- 输入功能:由键盘输入10个学生的学号、姓名、三科成绩,并计算出平均成绩和总成绩,然后将它存入文件stud.dat。
- 插入功能:按学号增加一个学生信息,并将其插入到stud.dat中。
- 排序功能,按要求对学生信息进行排序,分为按学号和按总成绩进行排序两种情形,并输出结果。
- 查询功能:按要求查找学生信息,分为按学号和姓名进行查询两种情形,并输出结果。
- 删除功能:按要求将学生信息删除,分为按学号和姓名进行删除两种情形。
- 输出功能:按学号输出学生信息。
整体思路:
- 程序启动的时候判断文件(stu.dat)是否存在,如果文件不存在,则正常执行,如果文件存在,先获取文件中学生的个数,根据学生的个数创建对象数组,将内容创建成学生对象,保存在对象数组1里,再向下执行。
- 用Switch语句来判断不同的输入。
- 新增学生,根据 原来对象数组1储存的人数+新增的人数 来确定新的动态数组2的大小,将原本对象数组1内的内容保存在新的对象数组2里,再将新增的内容储存在后面,每次新增完,直接保存到文件。
- 排序学生,根据学号或者姓名,写一个数组的冒泡排序即可
- 查询学生,写一个函数,判断学生是否存在,如果存在返回学生所在数组的下标,根据下标输出内容
- 删除学生,用查询学生写的函数,根据下标删除学生
- cout对象数组里的内容就完事
实现代码
[code]#include #include#include#define line for (int n = 0; n studentArray = NULL; this->studentId = "0"; this->name = "0"; this->score[0] = 0; this->Average = 0; this->Total = 0; this->File_Is_Empty = true; ifs.close(); return; } char c; ifs >> c; if (ifs.eof()) { //文件空 this->student_number = 0; this->studentArray = NULL; this->studentId = "0"; this->name = "0"; this->score[0] = 0; this->Average = 0; this->Total = 0; this->File_Is_Empty = true; ifs.close(); return; } int num = this->get_student_number(); //获取文件中学生数量 this->student_number = num; //cout studentId = stuId; this->name = stuName; for (int i = 0; i < 3; i++) this->score = stuScore; this->Average = (stuScore[0] + stuScore[1] + stuScore[2]) / 3; this->Total = stuScore[0] + stuScore[1] + stuScore[2]; };};void student::sort(int n) //排序,当n=1的时候为按学号排序,n=2为按总成绩排序{ int num1; //学号在设计的时候是string类型,用int类型排序需要atoi,用num接收转换过的值 int num2; // student a; //用于交换对象数组的中间变量 if (this->File_Is_Empty) //判断文件是否为空 { cout studentArray[t].studentId.c_str()); //将string类型变量变为int类型 num2 = atoi(this->studentArray[t + 1].studentId.c_str()); if (num1 > num2) a = this->studentArray[t + 1], this->studentArray[t + 1] = this->studentArray[t], this->studentArray[t] = a; } } } if (n == 2) { cout student_number - 1; i++)//冒泡排序 { for (int t = 0; t < this->student_number - 1 - i; t++) { if (this->studentArray[t].Total > this->studentArray[t + 1].Total) a = this->studentArray[t + 1], this->studentArray[t + 1] = this->studentArray[t], this->studentArray[t] = a; } } } }}void student::search() //查找学生成绩{ string id; int ret; //studentArray[]的下标,在Is_Exist()中 int a = 1; //判断根据学号查找还是姓名查找 cout > a; if (a == 1) { cout > id; ret = this->Is_Exist(id, 1); } else if (a == 2) { cout > id; ret = this->Is_Exist(id, 2); } else { ret = this->Is_Exist(id, 1); } if (ret == -1) { system("cls"); cout average && inf >> total) { //格式化读取文件,从文件读到变量 student stu(student_id, name, score); //使用读到的值实例化student对象 this->studentArray = stu; //把实例化的对象放到stu1对象的studentArray中 i++; }}int student::get_student_number() //获取文件中学生的数量,在add_stu()函数中加上需要增加的学生数量,为最新需要开辟的空间的大小{ string name; string student_id; int num=0; //每格式化读取一块数据,则加1人数 float score[3]; float total; int average; ifstream inf; inf.open(FILENAME, ios::in); while (inf >> student_id && inf >> name && inf >> score[0] && inf >> score[1] && inf >> score[2] && inf >> average && inf >> total) { num++; } inf.close(); return num; //返回学生数量}void student::save() //将stu1中studentArray中的每个student对象储存到文件中{ ofstream ofs; ofs.open(FILENAME,ios::out); for (int i = 0; i < this->student_number; i++) { ofs studentArray.studentId |