欢迎来到天天文库
浏览记录
ID:6322468
大小:58.50 KB
页数:9页
时间:2018-01-10
《学生成绩管理系统源代码》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、#include#include#include#include#include#include#include#include#includeusingnamespacestd;structstudent{charname[12];///姓名charid[10];///学号floatComputer;///计算机分数floatMath;
2、///数学分数floatChinese;///语文分数floatEnglish;///英语分数floatnumber;///总分floataverage;///平均分student*next;};classstud{student*p1,*p2,*head;public:~stud()/////----析构函数------------------------{while(head){p1=head->next;deletehead;head=p1;}}///------------成员函数---------
3、---student*input(student*head);//输入学生成绩voidoutput(student*head);//输出学生成绩student*del(student*head,char*p);//删除记录student*find(student*head,char*p,int&n);//查找学生记录(可查找多个同名数据)student*search(student*head,char*p,int&n);student*stat(student*head);//排序统计学生总分friendv
4、oidtotal(student*head);//统计学生总分friendvoidpingjun(student*head);//统计平均分student*insert(student*head);//按学生总分插入记录student*clear(student*head);//删除当前表voidInputs(student*p);//用于添加数据的子函数};//----------------------------------------------------voidstud::Inputs(stud
5、ent*p)//输入学生成绩{cout<>p->name>>p->id;cin>>p->Computer;while(cin.fail()){cout<<"您的输入有误,请重新输入"<>p->Computer;}cin>>p->Math
6、;while(cin.fail()){cout<<"您的输入有误,请重新输入"<>p->Math;}cin>>p->Chinese;while(cin.fail()){cout<<"您的输入有误,请重新输入"<>p->Chinese;}cin>>p->English;while(cin.fail()){cout<<"您的输入有误,请重新输入"<7、();cin>>p->English;}total(p);//计算出总分pingjun(p);//计算平均分}voidstud::output(student*head)//输出学生成绩{p1=head;while(p1!=NULL){cout<name<id<Computer<Math<Chinese<English<8、)<number<average<next;}}student*stud::insert(student*head){p1=newstudent;//指向要插入的节点Inputs(p1);//调用子函数增加数据p2=head;//使p2指向第一个节点student*p3=NULL;while((p2->numbernumber)&&p2-
7、();cin>>p->English;}total(p);//计算出总分pingjun(p);//计算平均分}voidstud::output(student*head)//输出学生成绩{p1=head;while(p1!=NULL){cout<name<id<Computer<Math<Chinese<English<8、)<number<average<next;}}student*stud::insert(student*head){p1=newstudent;//指向要插入的节点Inputs(p1);//调用子函数增加数据p2=head;//使p2指向第一个节点student*p3=NULL;while((p2->numbernumber)&&p2-
8、)<number<average<next;}}student*stud::insert(student*head){p1=newstudent;//指向要插入的节点Inputs(p1);//调用子函数增加数据p2=head;//使p2指向第一个节点student*p3=NULL;while((p2->numbernumber)&&p2-
此文档下载收益归作者所有