欢迎来到天天文库
浏览记录
ID:57041182
大小:1.61 MB
页数:34页
时间:2020-07-27
《数据结构课程设计ppt.ppt》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、数据结构学生成绩管理系统吴灵珊许梅琼梁春梅01问题描述02结构分析03基本操作函数04运行14计科2班第12组王芬岚2021/10/1A题描述Another定义A定义结构体数组typedefPARTBstructPARTCstuPART问基本操作函数学生成绩管理系统01020304问题描述结构分析基本操作函数运行14计科2班第12组void StuSave(Student *); //学生成绩管理系统的存储函数,由主函数调用基本操作函数:void StuOutput(Student *p); //输出
2、函数int StuImport(Student *head,Student *p); //输入函数void StuInputHand(Student *head); //学生成绩管理系统的手动输入函数,由输入函数调用void StuInputFile(Student *head); //学生成绩管理系统的文件输入函数,由输入函数调用void StuSelectErg(Student *head); //学生成绩管理系统的遍历函数,由查找函数调用void StuSelectNumFind(Student
3、*head); //学生成绩管理系统的按学号查找函数,由查找函数调用void StuSelectSubFind(Student *head); //学生成绩管理系统的按科目查找函数,由查找函数调用2021/10/1源程序2021/10/1#include//输入输出头文件#include#include#include#includeclassstudent//班级学生{private:charname[20
4、];//姓名doublecpro,english,math,sport,law,hbpro,computer;//课程intorder,number;//名次,学号public:student(){}student(charn[20],intnu,doublecc,doubleeng,doublema,doublesp,double2021/10/1l,doublehb,doublecom){strcpy(name,n);number=nu;cpro=cc;english=eng;math=ma;sport=sp;law=
5、l;hbpro=hb;computer=com;}friendvoidmain();};voidmain(){cout<<"欢迎进入**学生成绩管理系统**!"<6、**********"<7、ndl;2021/10/1charp;charw;//定义字符型p、wstudent*s[50];//指针对象,最多存50个学生数据ofstream*file[50];//负责对文件插入操作inti=0;//定义初始化i=0intj=0;//定义初始化j=0intflag=0;//定义变量初始化变量等于0do//flag判断输入是否有效{cin>>p;if((p>='0'&&p<='6'))flag=1;elsecout<<"指令错误!请重新输入:"<8、itch(p)//接收功能选项{case'0'://输入数据{charc;//定义一个字符型ccharname[20];intnumber;doublecpro,english,math,sport,law,hbpro,computer;//定义了一个数组,数组名为name,数组元素的个数为20定义do
6、**********"<7、ndl;2021/10/1charp;charw;//定义字符型p、wstudent*s[50];//指针对象,最多存50个学生数据ofstream*file[50];//负责对文件插入操作inti=0;//定义初始化i=0intj=0;//定义初始化j=0intflag=0;//定义变量初始化变量等于0do//flag判断输入是否有效{cin>>p;if((p>='0'&&p<='6'))flag=1;elsecout<<"指令错误!请重新输入:"<8、itch(p)//接收功能选项{case'0'://输入数据{charc;//定义一个字符型ccharname[20];intnumber;doublecpro,english,math,sport,law,hbpro,computer;//定义了一个数组,数组名为name,数组元素的个数为20定义do
7、ndl;2021/10/1charp;charw;//定义字符型p、wstudent*s[50];//指针对象,最多存50个学生数据ofstream*file[50];//负责对文件插入操作inti=0;//定义初始化i=0intj=0;//定义初始化j=0intflag=0;//定义变量初始化变量等于0do//flag判断输入是否有效{cin>>p;if((p>='0'&&p<='6'))flag=1;elsecout<<"指令错误!请重新输入:"<8、itch(p)//接收功能选项{case'0'://输入数据{charc;//定义一个字符型ccharname[20];intnumber;doublecpro,english,math,sport,law,hbpro,computer;//定义了一个数组,数组名为name,数组元素的个数为20定义do
8、itch(p)//接收功能选项{case'0'://输入数据{charc;//定义一个字符型ccharname[20];intnumber;doublecpro,english,math,sport,law,hbpro,computer;//定义了一个数组,数组名为name,数组元素的个数为20定义do
此文档下载收益归作者所有