1 Star 2 Fork 0

得过且过的勇者y/C++大作业:学生管理系统(可视化)

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
login.h 818 Bytes
一键复制 编辑 原始数据 按行查看 历史
得过且过的勇者y 提交于 2021-12-17 12:51 . new files via upload
#ifndef LOGIN_H
#define LOGIN_H
#include<iostream>
#include<algorithm>
#include<cstring>
#include<fstream>
#include "person.h"
#include "events.h"
using namespace std;
class login:virtual public person{
public:
login() = default;
login(char*);
login(char*,char*);//登录初始化
login(char*,char*,char*,char*);//注册初始化
bool verify1();//登录验证密码是否匹配
bool verify2();//注册验证账号是否存在
void regist();//注册
void in();//将账号文件中的姓名和电话赋给对象
void init();//读取file中所有需求
void ending();//将链表中所有数据更新到文件夹中
int tasknumber(int);//获得链表中现有的需求数量
string detail(int, string, int);//获得需求的具体信息
string operation(int, int, string, string, int, int);//对需求进行各种操作
private:
events eve[4];
};
#endif
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/Ken-Chy129/student_manager.git
git@gitee.com:Ken-Chy129/student_manager.git
Ken-Chy129
student_manager
C++大作业:学生管理系统(可视化)
master

搜索帮助