├── user ├── student ├── user.h ├── main.cpp ├── student.h ├── user.cpp ├── student.cpp ├── README.md └── LICENSE /user: -------------------------------------------------------------------------------- 1 | 2 2 | eric 3 | 123456 4 | yu 5 | 123456 6 | -------------------------------------------------------------------------------- /student: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeblade/StuManSystem/HEAD/student -------------------------------------------------------------------------------- /user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeblade/StuManSystem/HEAD/user.h -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeblade/StuManSystem/HEAD/main.cpp -------------------------------------------------------------------------------- /student.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeblade/StuManSystem/HEAD/student.h -------------------------------------------------------------------------------- /user.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeblade/StuManSystem/HEAD/user.cpp -------------------------------------------------------------------------------- /student.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeblade/StuManSystem/HEAD/student.cpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 本项目为学生学籍信息管理系统 2 | 3 | (1) 使用链表结构存储管理员账号信息和学生信息实现学生学籍信息管理系统。 4 | 5 | (2) 管理员模块:实现了管理员账号的注册、登陆、查看和删除功能,管理员账号登陆后方可进行数据操作。 6 | 7 | (3) 录入模块:录入学生学籍信息,学号,姓名,年龄,性别,籍贯,系别,专业,班级,电话,电子邮箱。 8 | 9 | (4) 显示模块:将用户确认保存的学生信息全部显示出来。 10 | 11 | (5) 查找模块:提示用户可以选择按姓名查找,按学号查找或者按Email查找。查找到的学生信息显示在屏幕上。 12 | 13 | (6) 修改模块:提示用户可以选择按照姓名修改或者按照学号修改学生信息。 14 | 15 | (7) 删除模块:提示用户可以选择按照姓名删除或者按照学号删除学生信息。 16 | 17 | (8) 文件读写:通过fstream进行文件读写操作,将管理员账号及密码信息写入磁盘文件或从磁盘文件中读取管理员信息。 18 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2021 timeblade 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | --------------------------------------------------------------------------------