C++实现的学生信息及课程设计管理系统

5星 · 超过95%的资源 需积分: 10 12 下载量 118 浏览量 更新于2024-09-08 1 收藏 17KB DOCX 举报
"C++ 学生信息管理系统" 在C++编程语言中,一个学生信息管理系统是一个常见的项目,用于练习面向对象编程和文件操作等技能。本系统可能包括对学生的个人信息、学术成绩以及额外信息(如爱好、课程设计成绩)的管理。下面将详细解释该系统中的关键知识点。 1. **面向对象编程**: - `Student` 类:这是系统的基础类,包含了学生的姓名、学号、三门课程(C++、数学、英语)的成绩和总分。类中定义了输入、读取文件和显示信息的方法。 - `Student2` 类:这是 `Student` 类的派生类,增加了学生的爱好和课程设计成绩,以及新的总分计算。继承机制使得 `Student2` 类可以拥有 `Student` 类的所有属性和方法,并扩展了它们。 2. **数据成员**: - `char name[20]` 和 `char Id[20]`:分别存储学生的姓名和学号,这里使用字符数组来表示字符串。 - `int Cnum`, `int Mnum`, `int Enum`:分别记录C++、数学和英语的分数。 - `int sum`:计算三门课程的总分。 - `char hobit[20]`:存储学生的爱好。 - `int keshe`:记录课程设计的成绩。 - `int sum2`:计算包括课程设计在内的总分。 - `Student* Next` 和 `Student2* Next2`:指向下一个学生对象的指针,用于实现链表结构。 3. **成员函数**: - `void Input()` 和 `void Input2()`:这两个函数用于从用户那里获取学生的信息。`Input2()` 在 `Input()` 的基础上增加了课程设计成绩和爱好的输入。 - `void ReadFile(istream& in)` 和 `void ReadFile2(istream& i)`:从输入流中读取学生信息,通常用于从文件中加载数据。 - `void Show()` 和 `void Show2()`:显示学生的所有信息,`Show2()` 包含了 `Show()` 的所有内容,并增加了课程设计成绩和爱好。 4. **文件操作**: - 这个系统可能包含文件的读写功能,利用 `ifstream` 和 `ofstream` 来读取和写入学生信息到文件中。例如,`ReadFile()` 和 `ReadFile2()` 函数可以用于从文件中读取学生数据,而写入文件的功能可能通过类似的方法实现,但未在给出的代码中显示。 5. **内存管理与链表**: - 使用指针 `Next` 和 `Next2` 构建链表,允许动态地添加或删除学生信息,实现对数据集合的高效管理。在实际应用中,还需要添加对链表的操作,如添加节点、删除节点、遍历链表等。 6. **预处理指令**: - `#ifndef STUDENT_H` 和 `#define STUDENT_H` 是防止头文件重复包含的宏定义,确保头文件只被包含一次,避免编译错误。 7. **命名约定**: - 类名通常使用驼峰命名法(如 `Student` 和 `Student2`),而成员变量则使用下划线命名法(如 `name` 和 `Id`),这是一种常见的C++编码规范。 这个学生信息管理系统是基于C++的面向对象编程实现,涉及到类的定义、继承、数据成员、成员函数、文件操作以及链表结构等核心概念。通过这个系统,学习者可以深入理解C++的高级特性,并提升实际编程能力。
2013-10-29 上传
关于c语言和c++的课程成绩信息管理系统,共有将近6000行代码,建议使用vs2012或2010便于管理也可使用VC6.0++环境修改运行但查找麻烦,所有的语言没有脱离c和c++,主要采用模块思想,也可以转换成面向对象型的语言,只要将模块函数写进类中。同时学c语言的也可以使用,除了使用cout,cin一些很容易上手的c++代码,相当于printf,scanf,主要为了方便输入输出,不用写%d%c... 详细细节也可以访问,百度文库网址 使用注意事项 有着强大的报错功能。 1 全部采用鼠标点击功能,可以看百度网址图片。 2 录用学生信息的细节选项中,如果点击错误信息,再次点击将会取消。 3 附加功能中的高级打印功能中,如果想改变选项,只需要点击另一个即可,当前的状态就会消失。 4 输入学号为53120101--531215**(其中不包括****00,例如53120700)。(可以设置) 5 所有成绩范围为0--99。(可以设置) 6 如果想去掉钢琴曲,直接删除MP3,或者改成其他名字即可。 7 打印直方图可以根据班级的不同,向后移动。 7 如果打印不规范,可能窗口较小,可通过调节窗口大小来打印排名...... 8 请包含student.txt默认文件(文件中至少一名学生信息),否则将会程序在进行实质功能作用时意外退出(已在包中)。 头文件student.h #ifndef _STUDENT_H_ #define _STUDENT_H_ #include #include HWND hWnd; //来自msdn #define PERR(bSuccess, api){if(!(bSuccess)) printf("%s:Error %d from %s \ on line %d\n", __FILE__, GetLastError(), api, __LINE__);} void cls( HANDLE hConsole ) { COORD coordScreen = { 0, 0 }; /* here's where we'll home thecursor */ BOOL bSuccess; DWORD cCharsWritten; CONSOLE_SCREEN_BUFFER_INFO csbi; /* to get buffer info */ DWORD dwConSize; /* number of character cells inthe current buffer *//* get the number of character cells in the current buffer */ bSuccess = GetConsoleScreenBufferInfo( hConsole, &csbi ); PERR( bSuccess, "GetConsoleScreenBufferInfo" ); dwConSize = csbi.dwSize.X * csbi.dwSize.Y;/* fill the entire screen with blanks */ bSuccess = FillConsoleOutputCharacter( hConsole, (TCHAR) ' ', dwConSize, coordScreen, &cCharsWritten ); PERR( bSuccess, "FillConsoleOutputCharacter" );/* get the current text attribute */ bSuccess = GetConsoleScreenBufferInfo( hConsole, &csbi ); PERR( bSuccess, "ConsoleScreenBufferInfo" );/* now set the buffer's attributes accordingly */ bSuccess = FillConsoleOutputAttribute( hConsole, csbi.wAttributes, dwConSize, coordScreen, &cCharsWritten ); PERR( bSuccess, "FillConsoleOutputAttribute" );/* put the cursor at (0, 0) */ bSuccess = SetConsoleCursorPosition( hConsole, coordScreen ); PERR( bSuccess, "SetConsoleCursorPosition" ); return; } HANDLE hOut; HANDLE hIn; void enter(); void ReadFile(char*str="student.txt"); typedef enum grade{you=95,liang=85,zhong=75,pass=65,nopass=0 } Grade; Grade g1=you; Grade g2=liang; Grade g3=zhong; Grade g4=pass; Grade g5=nopass; void DelClass(); //学生类结构 typedef struct student{ int studentid; char name[20]; char sex[5]; char nation[20]; int biryear; int birmonth; char post[10]; int cyu; int cyushe; int cshe; int cdui; int cduishe; struct student* next; double ave; double wave; } Student; Student *stubegin=NULL; Student* stulast=NULL; int total=0; //课程类结构 typedef struct course{ char obj[30]; int time; int xuefen; int mark; Grade rank; } Course; Course c1; Course c2; Course c3; Course c4; Course c5; void InitCourse(); void AddData(Student*); void AltData(); void AddShuju(int *,Student*); void IntEro(int& ,int,int,int,int); //功能介绍 /*****************************************Loading页面*******************************************/ void input();//输入信息功能 void output();//输出信息功能 void addition();//附加功能 /*****************************************输入信息功能*******************************************/ void AddStudent(); void DelStudent(int); void AltStudent(int); void SaveMessage(); void readfile(); /*****************************************输出信息功能*******************************************/ void CalRankAve(int); void CalRankWave(int); void PrintStudent(int); void PrintCourse(int); void PrintWell(); /*****************************************打印总成绩*******************************************/ void PrintTotal(); void PrintStudentID(); void PrintAve(); void PrintWave(); /*****************************************打印科目成绩*******************************************/ void PrintObj(); void PrintCyu(); void PrintCyushe(); void PrintCshe(); void PrintCdui(); void PrintCuishe(); /*****************************************打印优秀职务单科成绩*******************************************/ void PrintObjYou(); void PrintCyuYou(); void PrintCyusheYou(); void PrintCsheYou(); void PrintCduiYou(); void PrintCuisheYou(); /*********************辅助函数**********************/ void printmark(Student *); void AddStudent1(); void SortAve(); void SortWave(); void SortId(); void SortCyu(); void SortCyushe(); void SortCshe(); void SortCdui(); void SortCduishe(); int GetInt(char* ); int Search(int); void PrintGrade(int); int GetXuefen(int,int); /****计算平均成绩和加权成绩**/ void CalAve(Student*); void CalWave(Student*); /*****************************************附加功能*******************************************/ void PrintHistogram(); void PrintTotalHistogram();