班级管理系统源代码
程序代码 #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 r ecord { book object; record *prior; record *next; }; book::book() { name = "\0"; address = "\0"; number = "\0"; post = "\0";
用户评论
很好啊,以后会继续下载