【文件属性】:
文件名称:班级管理系统源代码
文件大小:42KB
文件格式:DOC
更新时间:2015-01-23 13:51:07
班级管理系统
程序代码
#include
#include
#include
#include
#include
#include
#include
using namespace std;
class book
{
public:
book();
char inter_face();//首页
void add_person();//添加新班级成员
void del_person();//删除某班级成员
void show_all();//显示所有班级成员
void alter();//修改信息
void select();//查询班级成员
void save_new();//保存新增加的班级成员
private:
string name;//姓名
string no;//学号
string address;//地址
string number;//电话号码
string post;//邮编
};
struct record
{
book object;
record *prior;
record *next;
};
book::book()
{
name = "\0";
address = "\0";
number = "\0";
post = "\0";