1. 首页
  2. 课程学习
  3. Java
  4. 班级管理系统源代码

班级管理系统源代码

上传者: 2018-12-09 03:34:07上传 DOC文件 41.5KB 热度 56次
程序代码 #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";
用户评论
码姐姐匿名网友 2018-12-09 03:34:07

很好啊,以后会继续下载