自己用c++写的简单成绩管理系统框架

#include<iostream>
#include<fstream>
#include<iomanip>
#include<string>
#include<windows.h>
using namespace std;


void color(const unsigned short color1)
{        
    if(color1>=0&&color1<=15)
        SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), color1);
    else
        SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), 7);
}



//个人信息的类
class information
{
public:
    string name,num,phone,id,sex;  //name是姓名,num是学号,age年龄,sex性别,phone是电话号码,id是身份证号码
    int age;

    information(string na="0",string nu="0",int ag=0,string se="0",string ph="0",string i="0"):name(na),num(nu),age(ag),sex(se),phone(ph),id(i){}//构造函数,初值均赋为零

    //各项数据的输入
    void inputname(string na){name=na;}
    void inputnum(string na){num=na;}
    void inputage(int na){age=na;}
    void inputsex(string na){sex=na;}
    void inputphone(string na){phone=na;}
    void inputid(string na){id=na;}

    //各项数据的输出
    string outputname(){return name;}
    string outputnum(){return num;}
    int outputage(){return age;}
    string outputsex(){return sex;}
    string outputphone(){return phone;}
    string outputid(){return id;}
};


//存放学生成绩的类
class grade
{
public:
    double clang,eng,math;   //clang就是c++

    grade(double a=0,double b=0,double c=0):clang(a),eng(b),math(c){}

    //输入成绩
    void inputclang(double a){clang=a;}
    void inputeng(double a){eng=a;}
    void inputmath(double a){math=a;}

    //返回成绩
    double outputclang(){return clang;}
    double outputeng(){return eng;}
    double outputmath(){return math;}
};

class student:public information,public grade  //学生类
{
public:
    static int a;
    student *next;
    student(){a++;}
    void print();   //输出成绩
    ~student(){a--;}
};

void student::print()
{
    //color(6);
     cout<<"姓名是"<<outputname()<<endl
         <<"学号是"<<outputnum()<<endl
         <<"年龄是"<<outputage()<<endl
         <<"性别是"<<outputsex()<<endl
         <<"电话是"<<outputphone()<<endl
         <<"身份证号是"<<outputid()<<endl
         <<"c++成绩是"<<outputclang()<<endl
         <<"英语成绩是"<<outputeng()<<endl
         <<"数学成绩是"<<outputmath()<<endl;
    // color(16);
}


student *the,*head;

int student::a=0;

void add()  //增加数据
{
    string a;
    int b;
    double c;
    if(!head)
    {
        head=new student;
        the=head;
        //在这里开始输入数据
        color(14);
        cout<<"请输入姓名:";cin>>a;the->inputname(a);
        cout<<"请输入学号:";cin>>a;the->inputnum(a);
         cout<<"请输入年龄:";cin>>b;the->inputage(b);
         cout<<"请输入性别:";cin>>a;the->inputsex(a);
         cout<<"请输入电话:";cin>>a;the->inputphone(a);
         cout<<"请输入身份证号:";cin>>a;the->inputid(a);
         cout<<"请输入c++成绩:";cin>>c;the->inputclang(c);
         cout<<"请输入英语成绩:";cin>>c;the->inputeng(c);
         cout<<"请输入数学成绩:";cin>>c;the->inputmath(c);
         color(16);
        the->next=NULL;
    }
    else
    {
        the->next=new student;
        the=the->next;
        //在这里开始输入数据
        color(14);
        cout<<"请输入姓名:";cin>>a;the->inputname(a);
        cout<<"请输入学号:";cin>>a;the->inputnum(a);
         cout<<"请输入年龄:";cin>>b;the->inputage(b);
         cout<<"请输入性别:";cin>>a;the->inputsex(a);
         cout<<"请输入电话:";cin>>a;the->inputphone(a);
         cout<<"请输入身份证号:";cin>>a;the->inputid(a);
         cout<<"请输入c++成绩:";cin>>c;the->inputclang(c);
         cout<<"请输入英语成绩:";cin>>c;the->inputeng(c);
         cout<<"请输入数学成绩:";cin>>c;the->inputmath(c);
         color(16);
        the->next=NULL;
    }
}

void del()  //删除,通过学号查询
{
    student *t;
    string a;
    //color(11);
    cout<<"请输入想删除的学生的学号:";cin>>a;
    //color(16);
    if(head->num==a){head=head->next;return;}
    for(t=head;t->next;t=t->next)
    {
        if(t->next->num==a)
        {
            t->next=t->next->next;
            return;
        }
    }
}

void seek() //查询一个学生的各项信息
{
    student *t;
    string a;
    //color(11);
    cout<<"请输入你想查看的学生的学号:";cin>>a;
    //color(16);
    for(t=head;t;t=t->next)
    {
        if(t->num==a)
        {
            t->print();
            return;
        }
    }
}

void change()  //修改学生信息
{
    student *t;
    string a;
    int b;
    double c;
    //color(12);
    cout<<"输入你想修改信息的学生的学号:";cin>>a;
    //color(16);
    
    for(t=head;;t=t->next)
    {
        if(t->num==a)
        {
        //color(13);
        cout<<"原姓名是"<<the->outputname()<<"   ";
        cout<<"请输入想修改成的姓名:";cin>>a;the->inputname(a);
        cout<<"原学号是"<<the->outputnum()<<"   ";
        cout<<"请输入想修改成的学号:";cin>>a;the->inputnum(a);
        cout<<"原年龄是"<<the->outputage()<<"   ";
         cout<<"请输入想修改成的年龄:";cin>>b;the->inputage(b);
        cout<<"原性别是"<<the->outputsex()<<"   ";
         cout<<"请输入想修改成的性别:";cin>>a;the->inputsex(a);
        cout<<"原电话是"<<the->outputphone()<<"   ";
         cout<<"请输入想修改成的电话:";cin>>a;the->inputphone(a);
        cout<<"原身份证号是"<<the->outputid()<<"   ";
         cout<<"请输入想修改成的身份证号:";cin>>a;the->inputid(a);
        cout<<"原c++成绩是"<<the->outputclang()<<"   ";
         cout<<"请输入想修改成的c++成绩:";cin>>c;the->inputclang(c);
        cout<<"原英语成绩是"<<the->outputeng()<<"   ";
         cout<<"请输入想修改成的英语成绩:";cin>>c;the->inputeng(c);
        cout<<"原数学成绩是"<<the->outputmath()<<"   ";
         cout<<"请输入想修改成的数学成绩:";cin>>c;the->inputmath(c);
        // color(16);
            return;
        }
    }
}

void save()
{
    student *t;
    ofstream outfile("E:\\student.txt",ios::app);
    for(t=head;t;t=t->next)
    {
        outfile<<t;
    }
    outfile.close();
}

void shuchu()
{
    student *t;
    for(t=head;t;t=t->next)
    {
        t->print();
    }
}




void main()
{
    int a;
    //color(10);
    cout<<"请输入一个数字以实现各功能"<<endl<<"输入1:增加。输入2:删除。输入3:查找。输入4:修改。输入5:存盘。输入6:显示。输入7:退出。"<<endl;
    
    while(1)
    {
        cout<<"请输入:";cin>>a;
        switch(a)
        {
            case 1: add();break;
            case 2: del();break;
            case 3: seek();break;
            case 4: change();break;
            case 5: save();break;
            case 6: shuchu();break;
            case 7:save();return;
        }
    }
    system("pause");
}

相当不错的一个成绩管理系统 #include #include #include #include using namespace std; enum {SUBJECT=5};//一共五门 typedef struct { char subject[10];//科目名称 int score;//科目成绩 }markinfo; typedef struct studentnode { markinfo mark[SUBJECT]; int totalmark; char name[10];//学生姓名 studentnode * next; }studentnode; class student { studentnode * head; public: student(); int addstudent(); ~student(); int countmark(); int sortbymark(); int save(); int show(); int display(); int readfiletolist(); int searchbyname(); }; student::student() //用构造函数来初始化。 { head=new studentnode; head->next=NULL; } //1.输入学生姓名、成绩等数据,并保存在链表中。 int student::addstudent() { studentnode * p; int i; char check; system("cls"); cout<<"**********************"<<endl; cout<<"请输入学生信息:"<<endl; do { p=new studentnode; cin.ignore(); cout<name); i=0; p->totalmark=0; do { cout<mark[i].subject); cout<>p->mark[i].score; } while(p->mark[i].score>100||p->mark[i].scoretotalmark=p->totalmark+p->mark[i].score; getchar(); } while(++i!=SUBJECT); if(head->next==NULL) { head->next=p;p->next=NULL; } else { p->next=head->next; head->next=p; } cout<next; if(p==NULL) { cout<<"没有学生,请重新输入"<<endl;system("pause");return 0; } else { cout<<"***************"<<endl; cout<<"学生成绩汇总:"<<endl; while(p) { cout<<"姓名:"<name<<" 总成绩:"<totalmark<next; } } system("pause"); return 0; } //4.输出所有学生成绩到一个文件中。 int student::save() { char address[35]; int i; studentnode * p=head->next; cout<<"请输入保存的地址"<<endl; cin.ignore(); gets(address); ofstream fout; fout.open(address,ios::app|ios::out); while(p) { fout<<"*"; fout<name<<"*"; i=0; while(i!=SUBJECT) { fout<mark[i].subject<<"*"; fout<mark[i].score; i++; } //fout<next; } fout.flush(); fout.close(); cout<next; while(p) { s=p->next; delete p; p=s; } delete head; } //3.按照总成绩大小对记录进行排序 int student::sortbymark() { studentnode *move1=head->next; studentnode *move2,*max,*pre1,*pre2,*maxpre,*s=move1; if(head->next==NULL) { cout<<"没有记录,请添加"<next!=NULL;pre1=move1,maxpre=pre1,move1=move1->next,max=move1) { for(pre2=move1,move2=move1->next;move2!=NULL;pre2=move2,move2=move2->next) if(move2->totalmark>max->totalmark) { maxpre=pre2; max=move2; } if(move1->next==max) //交换max和move1。 { pre1->next=max; move1->next=max->next; max->next=move1; move1=max; } else { s=move1->next; move1->next=max->next; max->next=s; maxpre->next=move1; pre1->next=max; move1=max; } } cout<<"已经按照从大到小排序"<next; int i; if(head->next==NULL){cout<<"没有学生记录,请添加"<<endl;system("pause"); return 0;} else { while(p) { cout<<"姓名:"<name; i=1; while(i!=SUBJECT+1) { cout<<"科目:"<mark[i-1].subject; cout<<" 成绩:"<mark[i-1].score; i++; } cout<next; } } system("pause"); return 0; } //6:从文件按读取记录 int student::display() { ifstream fin; char buf[100]; char str[25]; cout<<"请输入路径及文件名:"<<endl; cin.ignore(); gets(str); fin.open(str); if(!fin) { cout<<"没有此文件"<<endl; system("pause"); return 0; } while(fin) { fin.getline(buf,sizeof(buf)); cout<<buf<<endl; } system("pause"); return 0; } //8从文件中读取数据,并将数据保存在链表中 int student::readfiletolist() { ifstream fin; int i; char str[25]; cout<<"请输入路径及文件名:"<<endl; cin.ignore(); gets(str); fin.open(str); if(!fin) { cout<<"没有此文件"<totalmark=0; fin.getline(p->name,100,'*'); i=0; while(i!=SUBJECT) { fin.getline(p->mark[i].subject,100,'*'); fin>>p->mark[i].score; p->totalmark+=p->mark[i].score; i++; } if(head->next==NULL) { head->next=p; p->next=NULL; } else { p=head->next; head->next=p; } } cout<<"信息已经保存在链表中"<next==NULL) { cout<<"没有学生,请添加或者从文件中读取"<next; char findname[10]; int i; cout<name,findname)) { cout<<"经查找,找到该生信息如下:"<<endl<<endl; cout<<"姓名:"<name; i=1; while(i!=SUBJECT+1) { cout<<"科目:"<mark[i-1].subject; cout<<" 成绩:"<mark[i-1].score; i++; } cout<next; } cout<<"没有此学生,请添加或者从文件中读取"<<endl; system("pause"); return 0; } int showmenu() { int choice; char * menu[9]={ "1:输入学生成绩保存到链表\n", "2:计算每位学生总成绩\n", "3:按照总成绩大小对记录进行排序\n", "4:输出所有学生成绩到一个文件中\n", "5:显示新输入的学生信息\n", "6:从文件中读取信息\n", "7:将文件信息保存在链表中\n", "8:根据姓名查找学生记录\n", "9:结束程序\n" }; cout<<" "<<"*****************************************************"<<endl; cout<<" *"<<" "<<"学生成绩管理系统"<<" *"<<endl; cout<<" "<<"*****************************************************"<<endl; for(choice=0;choice<9;choice++) cout<<" "<<menu[choice]; cout<<" "<<"*****************************************************"<<endl; cout<<"please choose to continue"<>choice; } while(choice>9||choice<1); return choice; } int main() { int menuitem,flag=1; student stu; while(flag) { system("cls"); menuitem=showmenu(); switch(menuitem) { case 1:{stu.addstudent();break;} case 2:{stu.countmark();break;} case 3:{stu.sortbymark();break;} case 4:{stu.save();break;} case 5:{stu.show();break;} case 6:{stu.display();break;} case 7:{stu.readfiletolist();break;} case 8:{stu.searchbyname();break;} case 9:{flag=0;break;} } } return 0; }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值