#include
#include
#include
#include
//#include
//定义学生类
class stu
{
char name[20];
double num,math,chinese,english,average,sum;
public:
stu()
{
}
stu( char n[20],double nu,double ma,double chin,double eng)
{
strcpy(name,n);
num=nu;
math=ma;
chinese=chin;
english=eng;
}
double getsum()
{
sum=chinese+english+math;
return sum;
}
double getaver()
{
average=getsum()/3;
return average;
}
friend void main();
};
void show() //显示函数,删除了原函数中的1,因为与0重复
{
cout<<"\t\t\t进入本学生管理系统,请选择您需要的操作!"<
}
//主函数
void main()
{
char p[20],p1; //定义输入字符
char w[20],c; //等待键盘输入的变量
int i=0,j=0,flag=0; //定义当前学生位置和学生数量,是否跳到主页面判断
stu *s[50]; //定义学生数组
do
{
cout<<"当前已录人员总数:("<show();
cin>>p;
system("cls"); //刷新屏幕
if (strlen(p)==1) p1=p[0];
else p1='x';
switch (p1)
{
case '0':
{
char name[20];double num, math,chinese,english;
do{
cout<<"请输入姓名"<
cout<<"请输入 学号"<
cout<<"请输入 数学成绩:"<
cout<<"请输入 语文成绩:"<
cout<<"请输入 外语成绩:"<
j++;
s[i]=new stu(name,num,math, chinese, english);
i++;
cout<<"数据输入成功,想继续输入吗(y/n)"<
do {
if (!strcmp(w,"y")) break;
else if(!strcmp(w,"n")) {flag=1;break;}
cout<<"指令错误!请重新输入!"<
}while (1);
if(flag==1) {flag =0; break;}
}while(1);
}
break;
case '1':
{
char name[20];bool flag3=0;
do{
cout<<"请输入您要删除的学生姓名:"<
for(int h=0;h{
if(strcmp(name,s[h]->name)==0)
{
flag3=1;
i--;
do{
s[h]=s[h+1];
h++;
}while(h<=i);
}
}
if(flag3==0)
cout<<"您要求删除的对象本来就不存在!请检查输入的正确性!";
cout<<"要继续删除吗?(y/n)"<
do {
if (!strcmp(w,"y")) break;
else if(!strcmp(w,"n")) {flag=1;break;}
cout<<"指令错误!请重新输入!"<
}while (1);
if(flag==1) {flag =0; break;}
}while(1);
}
break;
case '2':
{
char name[20]; double num, mat,chin,eng;bool flag2=0;
do
{
cout<<"请输入您要修改的学生的姓名:"<
for(int h=0;h{
if(strcmp(name,s[h]->name)==0)
{
flag2=1;
cout<<"请输入新的 学号:"<
cout<<"请输入新的 数学成绩:"<
cout<<"请输入新的 语文成绩:"<
cout<<"请输入新的 外语成绩:"<
s[h]->num=num;
s[h]->chinese=chin;
s[h]->math=mat;
s[h]->english=eng;
cout<<"数据修改成功!";
}
}
if(flag2==0) cout<<"您要修改的学生本来就不存在!请检查重新输入!"<
do {
if (!strcmp(w,"y")) break;
else if(!strcmp(w,"n")) {flag=1;break;}
cout<<"指令错误!请重新输入!"<
}while (1);
if(flag==1) {flag =0; break;}
}while(1);
}
break;
case '3':
{
double t;
do
{
int flag1=0;
cout<<"请输入你要查询学生的 学号"<
for(int q=0;q{
if ((*s[q]).num==t)
{
flag1=1;
cout<<"您要查询的学生是:"<<(*s[q]).name<
}
}
if(flag1==0) cout<<"对不起!您要查询的学生不存在!"<
do {
if (!strcmp(w,"y")) break;
else if(!strcmp(w,"n")) {flag=1;break;}
cout<<"指令错误!请重新输入!"<
}while (1);
if(flag==1) {flag =0; break;}
} while(1);
}
break;
case '4':
{
char n[20];int j=0;
do
{
int flag=0;
cout<<"请输入你要查询的学生姓名"<
for(int j=0;j{
if(strcmp(n,(*s[j]).name)==0)
{
flag=1;
cout<<"您要查询的学生是:"<<(*s[j]).name<
}
if(flag==0) cout<<"对不起!您要查询的学生不存在!"<
do {
if (!strcmp(w,"y")) break;
else if(!strcmp(w,"n")) {flag=1;break;}
cout<<"指令错误!请重新输入!"<
}while (1);
if(flag==1) {flag =0; break;}
} while(1);
}
break;
case '5':
{
if(i==0)
{
cout<<"管理系统中没有录入数据或者数据已经被删除!"<
}
cout<<"本系统所有学生数据如下:"<
cout<num<<
" 语文:"<<" "<chinese<<" 数学:"<<" "<math
<<" 外语:"<<" "<english<<" 总分:"<<" "<<(*s[k]).getsum()
<<" 平均分:"<<" "<<(*s[k]).getaver()<
cout<<"请按任意继续..."<
system("cls"); //刷新屏幕
}
break;
case '6':
{
if(i==0)
{
cout<<"管理系统中没有录入数据或者数据已经被删除!"<
}
int t;stu b;
cout<<"本系统所以学生排名如下:"<
t=x;
for(int y=x+1;y{
if((s[t]->getsum())<(s[y]->getsum()))
t=y;
if(t!=x)
{
b=*s[x];
*s[x]=*s[t];
*s[t]=b;
}
}
}
for(int k=0;k{
cout<num<<
" 语文:"<<" "<chinese<<" 数学:"<<" "<math
<<" 外语:"<<" "<english<<" 总分:"<<" "<getsum()
<<" 平均分:"<<" "<getaver()<
cout<<"请按任意继续..."<
system("cls"); //刷新屏幕
}
break;
case '7':
{
if(i==0)
{
cout<<"管理系统中没有录入数据或者数据已经被删除!"<
}
int t;stu b;
cout<<"本系统所以学生 语文排名如下:"<
t=x;
for(int y=x+1;y{
if((s[t]->chinese)<(s[y]->chinese))
t=y;
if(t!=x)
{
b=*s[t];
*s[t]=*s[x];
*s[x]=b;
}
}
}
for(int k=0;k{
cout<num<<
" 语文:"<<" "<chinese<<" 数学:"<<" "<math
<<" 外语:"<<" "<english<<" 总分:"<<" "<getsum()
<<" 平均分:"<<" "<getaver()<
cout<<"请按任意继续..."<
system("cls"); //刷新屏幕
}
break;
case '8':
{
if(i==0)
{
cout<<"管理系统中没有录入数据或者数据已经被删除!"<
}
int t;stu b;
cout<<"本系统所以学生 数学排名如下:"<
t=x;
for(int y=x+1;y{
if((s[t]->math)<(s[y]->math))
t=y;
if(t!=x)
{
b=*s[t];
*s[t]=*s[x];
*s[x]=b;
}
}
}
for(int k=0;k{
cout<num<<
" 语文:"<<" "<chinese<<" 数学:"<<" "<math
<<" 外语:"<<" "<english<<" 总分:"<<" "<getsum()
<<" 平均分:"<<" "<getaver()<
cout<<"请按任意继续..."<
system("cls"); //刷新屏幕
}
break;
case '9':
{
if(i==0)
{
cout<<"管理系统中没有录入数据或者数据已经被删除!"<
}
int t;stu b;
cout<<"本系统所以学生英语排名如下:"<
t=x;
for(int y=x+1;y{
if((s[t]->english)<(s[y]->english))
t=y;
if(t!=x)
{
b=*s[t];
*s[t]=*s[x];
*s[x]=b;
}
}
}
for(int k=0;k{
cout<num<<
" 语文:"<<" "<chinese<<" 数学:"<<" "<math
<<" 外语:"<<" "<english<<" 总分:"<<" "<getsum()
<<" 平均分:"<<" "<getaver()<
cout<<"请按任意继续..."<
system("cls"); //刷新屏幕
}
break;
case 'e': {exit(0);}
default:
{
system("cls"); //刷新屏幕
cout<
system("cls");
}
}
/* if (flag==1)
{
flag=0;
cout<<"继续进行其它操作么?(y/n)"<
do {
if (!strcmp(w,"y")) break;
else if(!strcmp(w,"n")) {exit(0);}
cout<<"指令错误!请重新输入!"<
}while (1);
}
*/
}while(1);
}
有问题只用稍作改动!
好强悍的程序!!
这是借用一个别人的程序 total)
//***************************************************************************************************************************
//程序清单:
#include
#include
#include
#include
#include
#include
#include
#include
#include
int const Q=20;
#define LEN sizeof(struct student)
using namespace std;
int n=0; //定义一个全局变量统计学生人数
//——--------->定义一个学生考试信息的结构体
struct student
{
char name[Q]; //用来存放姓名的
char sex[Q]; //用来存放性别的
long int id; //用来存放准考证号的
int score[4]; //用来存放分数的
int total; //用来存放总分数的
struct student *next;
};
//student向量容器
vector
//-------------->学生类
class Information
{
public:
Information() ; //构造函数.
~Information() ; //析构函数.
student *creat();//建立链表函数。
void output(student *head);
int count(student *head);//定义函数count()统计考生总数
student *insert(student*head);//指针函数*insert()用来添加考生信息.
student *cancel(student *head,long int num);//指针函数*cancel()用来删除考生信息.
student *find(student *head,long int num); //指针函数*find()用来查找考生信息.
void paixu(student *head);//定义paixu()函数将考生的总分从大到小排列并输出
void average( student *head);//求学生成绩的平均分的函数
void save(student *head);//保存函数
student *Read();//读取函数
private:
student *p1,*p2,*p3,*head,st;
};
Information::Information()
{cout<<" ******************************************************************************\n";
cout<<" ------------------------<<欢迎您使用学生成绩管理系统>>------------------------\n";
cout<<" ******************************************************************************\n\n";
}
Information::~Information()
{ cout<<" ******************************************************************************\n";
cout<<" ------------------------<<谢谢您使用学生成绩管理系统>>------------------------\n";
cout<<" ******************************************************************************\n";
}
//------------>建立链表函数
student *Information::creat(void)
{//定义一个指向struct student的结构体指针函数*creat()用来增加考生信息.
char ch[Q];n=0; //用来存放姓名的
p1=p2=(student *)malloc(LEN);//调用malloc()函数用来开辟一个新的存储单元
cout<<" -------------<<请建立学生考试信息表,在姓名处键以 ! 结束输入。>>--------------"<
cin>>ch;
head=NULL; //给指针head赋初值
while (strcmp(ch,"!")!=0)
{//调用字符比较函数strcmp()用来判断是否继续输入
p1=(student *)malloc(LEN);//调用malloc()函数用来开辟一个新的存储单元
strcpy(p1->name,ch); //将循环结构前面输入的姓名复制到结构体名为p1的数组name中
cout<<" 性别:";
cin>>p1->sex;
cout<<" 准考证号(8位):";
cin>>p1->id;
cout<<" 数学成绩:";
cin>>p1->score[0];
cout<<" 物理成绩:";
cin>>p1->score[1];
cout<<" 英语成绩:";
cin>>p1->score[2];
cout<<" C语言成绩:";
cin>>p1->score[3];
p1->total=p1->score[0]+p1->score[1]+p1->score[2]+p1->score[3];//计算总分
if(n==0)head=p1;//如果是输入第一组学生考试信息就将指针p1赋给指针head
else p2->next=p1;//否则将p1赋给p2所指结构体的next指针
p2=p1;//将指针p1赋给指针p2
n++; //将n的值加1
cout<<" 姓名:";
cin>>ch;//将输入的姓名存放到字符数组ch中
}
p2->next=NULL;//将p2所指结构体的next指针重新赋空值
return (head);//将输入的第一组学生考试信息返回
}
//--------------->定义output()函数将考生的信息从头指针所指内容开始输出
void Information::output(student *head)
{
if(head==NULL) cout<<" 这是一个空表,请先输入考生成绩.\n";
else{
cout<<"-------------------------------------------------------------------------------\n";
cout<<" *学生考试成绩信息表*\n";
cout<<"-------------------------------------------------------------------------------\n";
cout<<"准考证号 姓 名 性别 数学 物理 英语 C++ 平均分 总分\n";
cout<<"-------------------------------------------------------------------------------\n";
p1=head;//将头指针赋给p
do
{
cout<
<
<
<
<
<
<
<
<
p1=p1->next;//将下一组考生信息的next指针赋给p
}while(p1!=NULL);//若指针p非空则继续,目的是把所有的考生信息都传给指针p然后输出.
}
}
//------------>统计学生人数的函数
int Information::count(struct student *head)//定义函数count()统计考生总数
{
if(head==NULL)return(0);//若指针head为空返回值为0
else return(1+count(head->next));//函数的递归调用
}
//----------->插入学生的成绩的函数
student *Information::insert( student *head)
//插入新结点定义一个指向struct student的结构体指针函数*insert()用来添加考生信息.
{
cout<<"\t----------------<<请输入新增学生成绩信息>>----------------\n"<
cout<<" 准考证号(8位):";
cin>>p1->id; //将输入的准考证号存放到p1所指结构体的数组id中
cout<<" 姓名:";
cin>>p1->name; //将输入的姓名存放到结构体名为p1的数组name中
cout<<" 性别:";
cin>>p1->sex;
cout<<" 数学成绩:";
cin>>p1->score[0];//将输入的数学成绩存放到p1所指结构体的数组score中
cout<<" 物理成绩:";
cin>>p1->score[1];//将输入的物理成绩存放到p1所指结构体的数组score中
cout<<" 英语成绩:";
cin>>p1->score[2];//将输入的英语成绩存放到p1所指结构体的数组score中
cout<<" C语言成绩:";
cin>>p1->score[3];//将输入的C语言成绩存放到p1所指结构体的数组score中
p1->total=p1->score[0]+p1->score[1]+p1->score[2]+p1->score[3];//计算总分
p2=head;//将头指针赋给p2
if(head==NULL) //若没调用次函数以前的头指针head为空
{
head=p1;p1->next=NULL;
}//则将p1赋给头指针head并将p1所指结构体成员指针next赋空值
else
{
while((p1->id>p2->id)&&(p2->next!=NULL))
{
p3=p2;//p3指向原p2指向的结点
p2=p2->next;
}//p2后移一个结点
if(p1->id<=p2->id)
{
if(head==p2)
{
p1->next=head;
head=p1;
} //插入到第一个结点之前
else
{
p3->next=p1;
p1->next=p2;
} //插入到p3所指结点之后
}
else
{
p2->next=p1;
p1->next=NULL;
} //插入到尾结点之后
}
n++;//将学生人数加1
cout<<"\t----------------<<你输入的学生信息已经成功插入>>----------------"<
}
//------------>删除函数
student *Information::cancel(student *head,long int num)//定义一个指向struct student的结构体指针函数*delete()用来删除考生信息.
{
if(head==NULL)//若调用次函数以前的头指针head为空
{
return(head);
}
else
{
p1=head;//否则将头指针赋给p1
while(num!=p1->id&&p1->next!=NULL)//寻找要删除的结点当p1所指的学生准考证号不是输入的学生准考证号并且p1所指的next指针不为空
{
p2=p1;
p1=p1->next;
}//p2指向原p1指向的结点p1后移一个结点
if(num==p1->id)//如果输入的学生准考证号是p1所指的学生准考证号//结点找到后删除
{
if(p1==head) head=p1->next;//如果head指针和p1指针相等则将下一个结点赋给指针head
else
p2->next=p1->next;//否则将p1所指结点赋给p2所指结点将要删除的学生信息跳过去
cout<<" 删除准考证号为"<
}
return(head);//将头指针返回
}
}
//------------>查找函数
student *Information::find(student *head,long int num)
//定义一个指向struct student的结构体指针函数*find()用来查找考生信息.
{
if(head==NULL)//若调用次函数以前的头指针head为空
{
cout<<" 这是一个空表,请先输入考生成绩.\n";
return(head);
}
else
{
p1=head;//否则将头指针赋给p1
while(num!=p1->id&&p1->next!=NULL)
//寻找结点当p1所指的学生准考证号不是输入的学生准考证号并且p1所指的next指针不为空
{
p1=p1->next;
}//p2指向原p1指向的结点p1后移一个结点
if(num==p1->id)//如果要查找的学生准考证号是p1所指的学生准考证号
{
cout<<"------------------------------------------------------------------------------\n";
cout<<"准考证号 姓 名 性别 数学 物理 英语 C++ 平均分 总分 \n";
cout<<"------------------------------------------------------------------------------\n";
cout<
<
<
<
<
<
<
<
<
}
else
cout<<" 没找到准考证号为"<
}
}
//------------定义paixu()函数将考生的总分从大到小排列并输出
void Information::paixu(student *head)
{
int i,k,m=0,j;
student *p[Q];//定义一个指向struct student的结构体指针数组p
if(head!=NULL)//如果头指针是空则继续
{ m=count(head);
cout<<"------------------------------------------------------------------------------\n";
cout<<" *学生考试成绩统计表*\n";
cout<<"------------------------------------------------------------------------------\n";
cout<<"准考证号 姓 名 性别 数学 物理 英语 C++ 平均分 总分 名次\n";
cout<<"------------------------------------------------------------------------------\n";
p1=head;
for(k=0;k
p[k]=p1;
p1=p1->next;
}
for(k=0;k
{
p2=p[k];
p[k]=p[j];
p[j]=p2;
} //从大到小排列的指针
for(i=0;i
cout<
<
<
<
<
<
<
<
<
<
}
}
}
//------------>求各科平均分成绩的函数
void Information::average(student *head)
{
int k,m;
float arg1=0,arg2=0,arg3=0,arg4=0;
if(head==NULL)//如果头指针是空则继续
{
cout<<" 这是一个空表,请先输入考生成绩.\n";
}
else
{
m=count(head);
p1=head;
for(k=0;k
arg1+=p1->score[0];
arg2+=p1->score[1];
arg3+=p1->score[2];
arg4+=p1->score[3];
p1=p1->next;
}
arg1/=m;arg2/=m;arg3/=m;arg4/=m;
cout<<" *全班单科成绩平均分*\n";
cout<<"------------------------------------------------------------------------------\n";
cout<<" 数学平均分:"<
}
}
//------------------->保存函数.
void Information::save(student *head)
{
ofstream out("data.txt",ios::out);
out<
{ out<
<
<
<
<
<
<
<
}
}
//———————————>读取函数的实现
student *Information::Read()
{ int i=0;
p1=p2=( student *)malloc(LEN);
head=NULL;
ifstream in("data.txt",ios::out);
in>>i;
if(i==0){cout<<" data.txt 文件中的数据为空,请先输入数据。"<
cout<<" …………………………………………………………………………………………"<
{ p1=(student *)malloc(LEN);
in>>st.name>>st.id>>st.sex
>>st.score[0]>>st.score[1]>>st.score[2]>>st.score[3]
>>st.total;
strcpy(p1->name,st.name);
p1->id=st.id;
strcpy(p1->sex,st.sex);
p1->score[0]=st.score[0];
p1->score[1]=st.score[1];
p1->score[2]=st.score[2];
p1->score[3]=st.score[3];
p1->total=st.total;
if(n==0)head=p1;//如果是输入第一组学生考试信息就将指针p1赋给指针head
else p2->next=p1;//否则将p1赋给p2所指结构体的next指针
p2=p1;//将指针p1赋给指针p2
n++; //将n的值加1
//显示读入数据
cout<<" "<
<
<
<
<
<
<
<
}
cout<<" 数据已经成功读取完毕。"<
return (head);
}
}
//------------------------------>主函数.
int main(void)
{
Information person;
student *head=NULL;
int choice;
long int i;
do{
cout<<"┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓";
cout<<"┃★ ★ ★ 学生成绩管理系统主菜单界面 ★ ★ ★┃";
cout<<"┃★ ★ ★ ♀读取数据请输入数字零♂ ★ ★ ★┃";
cout<<"┣━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┫";
cout<<"┃ ★ ★ ★ ★ ★ ★ ①.输入学生成绩 ★ ★ ★ ★ ★ ★ ┃";
cout<<"┃ ★ ★ ★ ②.显示学生成绩 ★ ★ ★ ┃";
cout<<"┃ ★ ★ ★ ③.排序统计成绩 ★ ★ ★ ┃";
cout<<"┃ ★ ★ ★ ④.查找学生成绩 ★ ★ ★ ┃";
cout<<"┃ ★ ★ ★ ⑤.增加学生成绩 ★ ★ ★ ┃";
cout<<"┃ ★ ★ ★ ⑥.删除学生成绩 ★ ★ ★ ┃";
cout<<"┃ ★ ★ ★ ★ ★ ★ ⑦.安全退出系统 ★ ★ ★ ★ ★ ★ ┃";
cout<<"┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛";
cout<<" 请输入您的选择(0--7):";
cin>>choice;
switch(choice)
{
case 0:head=person.Read();break;
case 1:
head=person.creat();
break;
case 2:
person.output(head);
break;
case 3:
person.paixu(head); person.average(head);
cout<<" 参加考试的学生人数为:"<
case 4:
cout<<" 请输入要查找的准考证号(8位):";
cin>>i;
person.find(head,i);
break;
case 5:
head=person.insert(head);
person.output(head);
break;
case 6:
cout<<" 请输入要删除的准考证号(8位):";
cin>>i;
head=person.cancel(head,i);
person.output(head);
break;
case 7:
person.save(head);
break;
default :cout<<" 对不起,您的输入有误,请重新输入。\n";
break;
}
}while(choice!=7);
return 0;
}
///**************************************************************************************************************************