c++大作业学生信息管理系统_第1页
c++大作业学生信息管理系统_第2页
c++大作业学生信息管理系统_第3页
c++大作业学生信息管理系统_第4页
c++大作业学生信息管理系统_第5页
已阅读5页,还剩15页未读 继续免费阅读

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

1 20 面向对象程序设计大作业面向对象程序设计大作业 学生信息管理系统 学 院 名 称 专 业 班级 学 生 姓名 学 号 指 导 教 师 完成时间 年 月 日 2 20 学生信息管理系统学生信息管理系统 1 编程目的 模仿日常生活中所用的信息管理系统 自行设计一个简单的学 生信息管理系统 要求能实现简单的增加 删除 查找学生信息的 功能以及能显示学生的基本信息 包括姓名 学号 性别 家庭住 址等 在窗口中显示运行结果 2 系统简介 程序正常运行后 屏幕上显示一个文字菜单 根据序号选定 相应的操作项目 当用户选定操作项目所对应的序号时 根据 应用程序的提示信息 从键盘上输入相应的数据 应用程序正常 运行后 要在屏幕上显示一个文字菜单 要求用户输入数据时 要给出清晰 明确的提示信息 3 编程思路 为各项操作功能设计一个菜单 应用程序运行后 先显示这 个菜单 然后用户通过菜单项选择希望进行的操作项目 4 总体设计 为各项操作功能设计一个菜单 应用程序运行后 先显示这 个菜单 然后用户通过菜单项选择希望进行的操作项目 5 关键技术说明 将学生信息定义为一个类 采用多文件保存不同的信息数据 6 源代码 include 3 20 include include static int N using namespace std void add int num string name politic address char sex ofstream outfile student1 txt ios out if outfile cerr open file error exit 1 while 1 cout 请输入学生信息 n n n endl cout 请输入学号 n num if num 0 break cout n 请输入姓名 n name cout n 请输入性别 n sex cout n 请输入政治面貌 n politic cout n 请输入家庭住址 n address cout n outfile num name sex politic address endl N outfile close void change int num 200 string name 200 politic 200 address 200 char sex 200 int n string nam poli addr char s ifstream infile student1 txt ios in if infile cerr open file error exit 1 for int i 0 i num i name i sex i politic i address i infile close 5 20 ofstream outfile student1 txt ios out if outfile cerr open file error exit 1 while 1 cout 注意输入学号为 0 是停止输入 n endl cout 请输入你要修改学生的学号 n n cout n if n 0 break cout n 请输入修改后的姓名 n nam cout n cout 请输入修改后的性别 n s cout n cout 请输入修改后的政治面貌 n poli cout n cout 请输入修改后家庭住址 n addr cout n for int i 0 i N i if num i n name i nam sex i s politic i poli addr ess i addr outfile num i name i sex i politic i address i endl 6 20 outfile close cout 修改完毕 n endl void search int num 200 string name 200 politic 200 address 200 char sex 200 int n ifstream infile student1 txt ios in if infile cerr open file error exit 1 for int i 0 i num i name i sex i politic i address i infile close while 1 cout 请输入按何种方式查找 endl cout endl 7 20 cout cout 1 按学号 查找 cout endl cout cout 2 按姓名 查找 cout endl cout cout 3 按性别 查找 cout endl cout cout 4 按政治 面貌查找 cout endl cout cout 5 按家庭 住址查找 cout endl cout cout 6 返回主 菜单 cout endl cout cout 0 退出查 找 cout endl cout n n n cout n if n 6 break switch n case 1 while 1 cout 请输入你要查找的学号 输入 0 返回 查找方式 num 199 8 20 if num 199 0 break for int i 0 i N i if num i num 199 cout 查找结果为 endl cout 学号 姓名 性别 政治面貌 家庭住址 endl cout num i name i sex i politic i address i endl endl cout 查找完毕 n endl break case 2 while 1 cout 请输入你要查找的姓名 输入 0 返回 查找方式 name 199 if name 199 0 break for int i 0 i N i if name i name 199 cout 查找结果为 endl cout 学号 姓名 性别 政治面貌 家庭住址 endl cout num i name i 9 20 sex i politic i address i endl endl cout 查找完毕 n endl break case 3 while 1 cout 请输入你要查找的性别 输入 0 返回 查找方式 sex 199 if sex 199 0 break for int i 0 i N i if sex i sex 199 cout 查找结果为 endl cout 学号 姓名 性别 政治面貌 家庭住址 endl cout num i name i sex i politic i address i endl endl cout 查找完毕 n endl break case 4 while 1 cout 请输入你要查找的政治面貌 输入 0 10 20 返回查找方式 politic 199 if politic 199 0 break for int i 0 i N i if politic i politic 199 cout 查找结果为 endl cout 学号 姓名 性别 政治面貌 家庭住址 endl cout num i name i sex i politic i address i endl endl cout 查找完毕 n endl break case 5 while 1 cout 请输入你要查找的家庭住址 输入 0 返回查找方式 address 199 if address 199 0 break for int i 0 i N i if address i address 199 cout 查找结果为 endl cout 学号 姓名 性别 政治面貌 家庭住址 endl 11 20 cout num i name i sex i politic i address i endl endl cout 查找完毕 n endl break default cout 输入错误 n endl break void del int num 200 n string name 200 politic 200 address 200 char sex 200 ifstream infile student1 txt ios in if infile cerr open file error exit 1 cout 学号 姓名 性别 政治面貌 家庭住址 endl for int i 0 i num i name i sex i politic i address i 12 20 cout num i name i sex i politic i address i endl endl infile close ofstream outfile student1 txt ios out if outfile cerr open file error exit 1 while 1 cout n n 注意输入学号为 0 是停止删除 n endl cout 请输入你要删除学生的学号 n if n 0 break for int i 0 i N i if num i n outfile num i name i sex i politic i address i endl cout 删除完毕 endl N outfile close void show int num string name politic address 13 20 char sex ifstream infile student1 txt ios in if infile cerr open file error exit 1 cout 学号 姓名 性别 政治面貌 家庭住址 endl for int i 0 i num name sex politic address cout num name sex politic address endl endl int main int n while 1 cout endl cout cout 1 增加学 生记录 cout endl cout cout 2 删除学 生记录 cout endl cout cout 3 修改学 生记录 cout endl cout cout 4 查找学 14 20 生记录 cout endl cout cout 5 显示学 生记录 cout endl cout cout 注意 输入学号 为 0 时退出输入 cout endl cout n n endl cout 请选择 n n cout n if n 0 break switch n case 1 add break case 2 del break case 3 change break case 4 search bre

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论