机房预约系统 c++

 

 

 

代码:

computerroom.h

#pragma once
#include<iostream>
using namespace std;

class ComputerRoom
{
public:
	int m_ComId;

	int m_MaxNum;

private:

};

globalFile.h

#pragma once

#define ADMIN_FILE "admin.txt"
#define STUDENT_FILE "student.txt"
#define TEACHER_FILE "teacher.txt"
#define COMPUTER_FILE "computerRoom.txt"
#define ORDER_FILE "order.txt"

Identity.h

#pragma once
#include<iostream>
using namespace std;

class Identity
{
public:
	virtual void operMenu() = 0;

	string m_Name;
	string m_Pwd;
};

manager.h

#pragma once
#include<iostream>
using namespace std;
#include"Identity.h"
#include<string>
#include<fstream>
#include"globalFile.h"
#include<vector>
#include"student.h"
#include"teacher.h"
#include<algorithm>
#include"computerroom.h"

class Manager:public Identity
{
public:

	Manager();

	Manager(string name, string pwd);

	void operMenu();

	void addPerson();

	void showPerson();

	void showComputer();

	void cleanFile();

	void initVector();

	bool checkRepeat(int id,int type);

	vector<Student>vStu;

	vector<Teacher>vTea;

	vector<ComputerRoom>vCom;

private:

};

orderfile.h

#pragma once
#include<iostream>
using namespace std;
#include<map>
#include"globalFile.h"
#include<fstream>



class OrderFile
{
public:
	OrderFile();
	
	void updataOrder();


	void updata();


	int m_Size;

	map<int, map<string, string>> m_orderData;

private:

};

student.h

#pragma once
#include<iostream>
#include"Identity.h"
using namespace std;
#include<string>
#include<vector>
#include<fstream>
#include"computerroom.h"
#include"globalFile.h"

class Student:public Identity
{
public:
	//无参构造
	Student();

	//有参构造
	Student(int id, string name, string pwd);

	//菜单界面
	void operMenu();

	//申请预约
	void applyOrder();

	//查看我的预约
	void showMyOrder();

	//查看所有的预约
	void showAllOrder();

	//取消预约
	void cancelOrder();

	~Student();

	int m_Id;

	vector<ComputerRoom>vCom;

private:

};

teacher.h

#pragma once
using namespace std;
#include<iostream>
#include"Identity.h"
#include"globalFile.h"
#include"orderfile.h"
#include<fstream>
#include<vector>


class Teacher:public Identity
{
public:
	Teacher();

	//有参	
	Teacher(int id, string name, string pwd);


	void operMenu();


	//查看预约
	void showAllOrder();

	//审核预约
	void validOrder();

	int m_EmpId;

private:

};

manager.cpp

#include"manager.h"
using namespace std;

Manager::Manager()
{

}


Manager::Manager(string name, string pwd)
{
	this->m_Name = name;
	this->m_Pwd = pwd;
	this->initVector();

	ifstream ifs;

	ifs.open(COMPUTER_FILE, ios::in);

	ComputerRoom c;
	while (ifs >> c.m_ComId && ifs >> c.m_MaxNum)
	{
		vCom.push_back(c);
	}

	cout << "当前机房数量为" << vCom.size() << endl;
	ifs.close();
}

void printStudent(Student & s)
{
	cout << "编号: " << s.m_Id << " " << "姓名: " << s.m_Name << " 密码: " << s.m_Pwd << endl;
}

void printTeacher(Teacher & t)
{
	cout << "职工号: " << t.m_EmpId << " " << "姓名: " << t.m_Name << " 密码: " << t.m_Pwd << endl;
}


void Manager::operMenu()
{
	cout << " 欢迎管理员" << this->m_Name << "登录!" << endl;
	cout << endl;
	cout << endl << "请输入您的身份" << endl;
	cout << "\t\t-----------------------------------------\n";
	cout << "\t\t|                                        |\n";
	cout << "\t\t|              1、添加账号               |\n";
	cout << "\t\t|                                        |\n";
	cout << "\t\t|              2、查看账号               |\n";
	cout << "\t\t|                                        |\n";
	cout << "\t\t|              3、查看机房               |\n";
	cout << "\t\t|                                        |\n";
	cout << "\t\t|              4、清空预约               |\n";
	cout << "\t\t|                                        |\n";
	cout << "\t\t|              0、注销登录               |\n";
	cout << "\t\t|                                        \n";
	cout << "\t\t-----------------------------------------\n";
	cout << "请输入您的选择";
	cout << endl;

}

void Manager::addPerson()
{
	cout << "请输入添加帐号的类型" << endl;
	cout << "1、添加学生" << endl;
	cout << "2、添加老师" << endl;

	string filename;
	string tip;
	ofstream ofs;
	string errorTip;

	int select;
	cin >> select;

	if (select == 1)
	{
		filename = STUDENT_FILE;
		tip = "请输入学号";
		errorTip = "学号重复,请重新输入";
	}
	else
	{
		filename = TEACHER_FILE;
		tip = "请输入职工号";
		errorTip = "职工号重复,请重新输入";
	}

	ofs.open(filename, ios::out | ios::app);
	int id;
	string name;
	string pwd;
	cout << tip << endl;

	while (true)
	{
		cin >> id;
		if (this->checkRepeat(id, select))
		{
			cout << errorTip << endl;
			continue;
		}
		else
		{
			break;
		}
	}


	cout << "请输入新姓名" << endl;
	cin >> name;
	cout << "请输入密码" << endl;
	cin >> pwd;



	ofs << id << " " << name << " " << pwd << " " << endl;
	cout << "添加成功" << endl;
	system("pause");
	system("cls");
	ofs.close();

	this->initVector();

}

void Manager::showPerson()
{
	cout << "请选择查看内容" << endl;
	cout << "1、查看所有学生" << endl;
	cout << "2、查看所有老师" << endl;

	int select = 0;
	cin >> select;
	if (select == 1)
	{
		cout << "所有的学生信息如下: " << endl;
		for_each(vStu.begin(), vStu.end(), printStudent);
	}
	else
	{
		cout << "所有的老师信息如下: " << endl;
		for_each(vTea.begin(), vTea.end(), printTeacher);
	}
	system("pause");
	system("cls");
}

void Manager::showComputer()
{
	cout << "机房信息如下" << endl;
	for (vector<ComputerRoom>::iterator it = vCom.begin();it != vCom.end();it++)
	{
		cout << "机房" << it->m_ComId << "最大容量为" << it->m_MaxNum << endl;
	}

	system("pause");
	system("cls");
}

void Manager::cleanFile()
{
	ofstream ofs;
	ofs.open(ORDER_FILE, ios::trunc);
	ofs.close();

	cout << "清空成功!" << endl;
	system("pause");
	system("cls");
}

void Manager::initVector()
{
	ifstream ifs;
	ifs.open(STUDENT_FILE, ios::in);
	if (!ifs.is_open())
	{
		cout << "文件打开失败" << endl;
		return;
	}

	this->vStu.clear();
	this->vTea.clear();

	Student s;

	while (ifs >> s.m_Id && ifs >> s.m_Name && ifs >> s.m_Pwd)
	{
		vStu.push_back(s);
	}
	cout << "当前学生数量为" << vStu.size() << endl;
	ifs.close();


	ifs.open(TEACHER_FILE, ios::in);
	Teacher t;
	while (ifs >> t.m_EmpId && ifs >> t.m_Name && ifs >> t.m_Pwd)
	{
		vTea.push_back(t);
	}

	cout << "当前教师数量为" << vTea.size() << endl;
	ifs.close();

}


bool Manager::checkRepeat(int id, int type)
{
	if (type == 1)
	{
		for (vector<Student>::iterator it = vStu.begin();it != vStu.end(); it++)
		{
			if (id == it->m_Id)
			{
				return true;
			}
		}
	}
	else
	{
		for (vector<Teacher>::iterator it = vTea.begin();it != vTea.end();it++)
		{
			if (id == it->m_EmpId)
			{
				return true;
			}
		}
	}
	return false;
}

orderfile.cpp

#include"orderfile.h"
OrderFile::OrderFile()
{
	ifstream ifs;
	ifs.open(ORDER_FILE, ios::in);

	string date;
	string interval;
	string stuID;
	string stuName;
	string roomId;
	string status;

	this->m_Size = 0;

	while (ifs >> date && ifs >> interval && ifs >> stuID &&
		ifs >> stuName && ifs >> roomId && ifs >> status)
	{
		string key;
		string value;
		map<string, string>m;

		int pos = date.find(":");
		if (pos != -1)
		{
			key = date.substr(0, pos);
			value = date.substr(pos + 1, date.size() - 5);
			m.insert(make_pair(key, value));
		}
		

		pos = interval.find(":");
		if (pos != -1)
		{
			key = interval.substr(0, pos);
			value = interval.substr(pos + 1, interval.size() - pos - 1);
			m.insert(make_pair(key, value));
		}

		pos = stuID.find(":");
		if (pos != -1)
		{
			key = stuID.substr(0, pos);
			value = stuID.substr(pos + 1, stuID.size() - pos - 1);
			m.insert(make_pair(key, value));
		}
		

		pos = stuName.find(":");
		if (pos != -1)
		{
			key = stuName.substr(0, pos);
			value = stuName.substr(pos + 1, stuName.size() - pos - 1);
			m.insert(make_pair(key, value));
		}

		pos = roomId.find(":");
		if (pos != -1)
		{
			key = roomId.substr(0, pos);
			value = roomId.substr(pos + 1, roomId.size() - pos - 1);
			m.insert(make_pair(key, value));
		}


		pos = status.find(":");
		if (pos != -1)
		{
			key = status.substr(0, pos);
			value = status.substr(pos + 1, status.size() - pos - 1);
			m.insert(make_pair(key, value));
		}
		this->m_orderData.insert(make_pair(this->m_Size, m));
		this->m_Size++;


	}

	ifs.close();

}

void OrderFile::updata()
{
	if (this->m_Size == 0)
	{
		return;
	}
	
		ofstream ofs;
		ofs.open(ORDER_FILE, ios::out | ios::trunc);
		for (int i = 0;i < m_Size;i++)
		{
			ofs << "date:" << this->m_orderData[i]["date"] << " ";
			ofs << "interval:" << this->m_orderData[i]["interval"] << " ";
			ofs << "stuId:" << this->m_orderData[i]["stuId"] << " ";
			ofs << "stuName:" << this->m_orderData[i]["stuName"] << " ";
			ofs << "roomId:" << this->m_orderData[i]["roomId"] << " ";
			ofs << "status:" << this->m_orderData[i]["status"] << endl;

		}
		ofs.close();
	
}

student.cpp

#include"student.h"
#include"orderfile.h"

//无参构造
Student::Student()
{

}

//有参构造
Student::Student(int id, string name, string pwd)
{
	this->m_Id = id;
	this->m_Name = name;
	this->m_Pwd = pwd;

	ifstream ifs;
	ifs.open(COMPUTER_FILE, ios::in);
	ComputerRoom c;
	while (ifs >> c.m_ComId && ifs >> c.m_MaxNum)
	{
		vCom.push_back(c);
	}
	ifs.close();
}

//菜单界面
void Student::operMenu()
{
	cout << " 欢迎学生" << this->m_Name << "登录!" << endl;
	cout << endl;
	cout << "\t\t-----------------------------------------\n";
	cout << "\t\t|                                        |\n";
	cout << "\t\t|              1、申请预约               |\n";
	cout << "\t\t|                                        |\n";
	cout << "\t\t|              2、查看我的预约           |\n";
	cout << "\t\t|                                        |\n";
	cout << "\t\t|              3、查看所有预约           |\n";
	cout << "\t\t|                                        |\n";
	cout << "\t\t|              4、取消预约               |\n";
	cout << "\t\t|                                        |\n";
	cout << "\t\t|              0、注销登录               |\n";
	cout << "\t\t|                                        \n";
	cout << "\t\t-----------------------------------------\n";
	cout << "请输入您的选择";
	cout << endl;
}

//申请预约
void Student::applyOrder()
{
	cout << "机房开放时间为周一至周五!" << endl;
	cout << "请输入申请预约的时间:" << endl;
	cout << "1、周一" << endl;
	cout << "2、周二" << endl;
	cout << "3、周三" << endl;
	cout << "4、周四" << endl;
	cout << "5、周五" << endl;

	int data = 0;
	int interval = 0;
	int room = 0;
	while (true)
	{
		cin >> data;
		if (data >= 1 && data <= 5)
		{
			break;
		}
		cout << "输入有误,请重新输入" << endl;
	}

	cout << "请输入申请预约的时间段" << endl;
	cout << "1、上午" << endl;
	cout << "2、下午" << endl;

	while (true)
	{
		cin >> interval;
		if (interval >= 1 && interval <= 2)
		{
			break;
		}
		cout << "输入有误,请重新输入" << endl;
	}
	cout << "请选择机房" << endl;
	for (int i = 0;i < vCom.size();i++)
	{
		cout << vCom[i].m_ComId << "号机房的容量为" << vCom[i].m_MaxNum << endl;
	}

	while (true)
	{
		cin >> room;
		if (room >= 1 && room <= 3)
		{
			break;
		}
		cout << "输入有误,请重新输入" << endl;
	}
	cout << "预约成功!审核中" << endl;

	ofstream ofs;
	ofs.open(ORDER_FILE, ios::app);
	ofs << "date:" <<data<< " ";
	ofs << "interval:" << interval << " ";
	ofs << "stuId:" << this->m_Id << " ";
	ofs << "stuName:" << this->m_Name << " ";
	ofs << "roomId:" << room << " ";
	ofs << "status:" << 1 << endl;
	ofs.close();
	system("pause");
	system("cls");

}

//查看我的预约
void Student::showMyOrder()
{
	OrderFile of ;
	if (of.m_Size == 0)
	{
		cout << "无预约记录";
		system("pause");
		system("cls");
		return;
	}
	for (int i = 0;i < of.m_Size;i++)
	{
		if (atoi(of.m_orderData[i]["stuId"].c_str()) == this->m_Id)
		{
			cout << "预约日期:周" << of.m_orderData[i]["date"]<<" ";
			cout << "时段:" << (of.m_orderData[i]["interval"] == "1" ? "上午" : "下午")<<" ";
			cout << "机房" << of.m_orderData[i]["roomId"]<<" ";
			string status = "状态: ";
			if (of.m_orderData[i]["status"] == "1")
			{
				status += "审核中";
			}
			else if (of.m_orderData[i]["status"] == "2")
			{
				status += "预约成功";
			}
			else if (of.m_orderData[i]["status"] == "-1")
			{
				status += "预约失败";
			}
			else
			{
				status += "预约已取消啊";
			}
			cout << status << endl;
		}
	}
	system("pause");
	system("cls");
}

//查看所有的预约
void Student::showAllOrder()
{
	OrderFile of;
	if (of.m_Size == 0)
	{
		cout << "记录为空" << endl;
		system("pause");
		system("cls");
		return;
	}
	for (int i = 0;i < of.m_Size;i++)
	{
		cout << i + 1 << "、";
		cout << "学号:" << of.m_orderData[i]["stuId"] << " ";
		cout << "姓名:" << of.m_orderData[i]["stuName"] << " ";
		cout << "预约日期:周" << of.m_orderData[i]["date"] << " ";
		cout << "时段:" << (of.m_orderData[i]["interval"] == "1" ? "上午" : "下午") << " ";
		cout << "机房" << of.m_orderData[i]["roomId"] << " ";
		string status = "状态: ";
		if (of.m_orderData[i]["status"] == "1")
		{
			status += "审核中";
		}
		else if (of.m_orderData[i]["status"] == "2")
		{
			status += "预约成功";
		}
		else if (of.m_orderData[i]["status"] == "-1")
		{
			status += "预约失败";
		}
		else
		{
			status += "预约已取消啊";
		}
		cout << status << endl;
	}
	system("pause");
	system("cls");
}

//取消预约
void Student::cancelOrder()
{
	OrderFile of;
	if (of.m_Size == 0)
	{
		cout << "无预约记录" << endl;
		system("pause");
		system("cls");
		return;
	}
	cout << "审核中或者预约成功的记录可以取消,请输入取消的记录" << endl;
	
	vector<int>v;
	int index = 1;
	for (int i = 0;i < of.m_Size ;i++)
	{
		if (atoi(of.m_orderData[i]["stuId"].c_str()) == this->m_Id)
		{
			if (of.m_orderData[i]["status"] == "1" || of.m_orderData[i]["status"] == "2")
			{
				v.push_back(i);
				cout << index++ << "、";
				cout << "预约日期" << of.m_orderData[i]["date"] << " ";
				cout << "预约日期:周" << of.m_orderData[i]["date"] << " ";
				cout << "时段:" << (of.m_orderData[i]["interval"] == "1" ? "上午" : "下午") << " ";
				cout << "机房" << of.m_orderData[i]["roomId"] << " ";
				string status = "状态: ";
				if (of.m_orderData[i]["status"] == "1")
				{
					status += "审核中";
				}
				else if (of.m_orderData[i]["status"] == "2")
				{
					status += "预约成功";
				}
				else if (of.m_orderData[i]["status"] == "-1")
				{
					status += "预约失败";
				}
				else
				{
					status += "预约已取消啊";
				}
				cout << status << endl;
			}
			
		}
	}

	cout << "请输入要取消的记录" << endl;
	int select = 0;
	while (true)
	{	
		cin >> select;
		if (select >= 0 && select <= v.size())
		{
			if (select == 0)
			{
				break;
			}
			else
			{
				of.m_orderData[v[select - 1]]["status"] = "0";
				of.updata();
				cout << "已取消" << endl;
				break;
			}
		}
		cout << "输入错误";
	}
	system("pause");
	system("cls");

}

Student::~Student()
{

}

teacher.cpp

#include"teacher.h"

 Teacher::Teacher()
{

}

 Teacher::Teacher(int id, string name, string pwd)
 {
	 this->m_EmpId = id;
	 this->m_Name = name;
	 this->m_Pwd = pwd;
 }


 void Teacher::operMenu()
 {
	 cout << " 欢迎老师" << this->m_Name << "登录!" << endl;
	 cout << endl;
	 cout << "\t\t-----------------------------------------\n";
	 cout << "\t\t|                                        |\n";
	 cout << "\t\t|              1、查看所有预约           |\n";
	 cout << "\t\t|                                        |\n";
	 cout << "\t\t|              2、审核预约               |\n";
	 cout << "\t\t|                                        |\n";
	 cout << "\t\t|              0、注销登录               |\n";
	 cout << "\t\t|                                        \n";
	 cout << "\t\t-----------------------------------------\n";
	 cout << "请输入您的选择";
	 cout << endl;
 }


 //查看预约
 void Teacher::showAllOrder()
 {
	 OrderFile of;
	 if (of.m_Size == 0)
	 {
		 cout << "无预约记录" << endl;
		 system("pause");
		 system("cls");
		 return;
	 }
	 for (int i = 0;i < of.m_Size;i++)
	 {
		 cout << i + 1 << "、" << endl;
		 cout << "学号:" << of.m_orderData[i]["stuId"] << " ";
		 cout << "姓名:" << of.m_orderData[i]["stuName"] << " ";
		 cout << "预约日期:周" << of.m_orderData[i]["date"] << " ";
		 cout << "时段:" << (of.m_orderData[i]["interval"] == "1" ? "上午" : "下午") << " ";
		 cout << "机房" << of.m_orderData[i]["roomId"] << " ";
		 string status = "状态: ";
		 if (of.m_orderData[i]["status"] == "1")
		 {
			 status += "审核中";
		 }
		 else if (of.m_orderData[i]["status"] == "2")
		 {
			 status += "预约成功";
		 }
		 else if (of.m_orderData[i]["status"] == "-1")
		 {
			 status += "预约失败";
		 }
		 else
		 {
			 status += "预约已取消啊";
		 }
		 cout << status << endl;
	 }
	 system("pause");
	 system("cls");
	 return;
 }

 //审核预约
 void Teacher::validOrder()
 {
	 OrderFile of;
	 if (of.m_Size == 0)
	 {
		 cout << "无预约记录" << endl;
		 system("pause");
		 system("cls");
		 return;
	 }
	 cout << "待审核的预约记录如下:" << endl;
	 vector<int>v;
	 int index = 0;
	 for (int i = 0;i < of.m_Size;i++)
	 {
		 if (of.m_orderData[i]["status"] == "1")
		 {
			 v.push_back(i);
			 cout << ++index << "、" << " ";
			 cout << "预约日期" << of.m_orderData[i]["date"] << " ";
			 cout << "预约日期:周" << of.m_orderData[i]["date"] << " ";
			 cout << "时段:" << (of.m_orderData[i]["interval"] == "1" ? "上午" : "下午") << " ";
			 cout << "机房" << of.m_orderData[i]["roomId"] << " ";
			 string status = "状态: ";
			 if (of.m_orderData[i]["status"] == "1")
			 {
				 status += "审核中";
			 }
			 cout << status << endl;
		 }
	 }
	 cout << "请输入想要审核的记录,0代表返回" << endl;
	 int select = 0;
	 int ret = 0;
	 while (true)
	 {
		 cin >> select;
		 if (select >= 0 && select <= of.m_Size)
		 {
			 if (select == 0)
			 {
				 break;
			 }
			 else
			 {
				 cout << "请输入审核结果" << endl;
				 cout << "1、通过" << endl;
				 cout << "2、不通过" << endl;
				 cin >> ret;
				 if (ret == 1)
				 {
					 of.m_orderData[v[select - 1]]["status"] = "2";
				 }
				 else
				 {
					 of.m_orderData[v[select - 1]]["status"] = "-1";
				 }
				 of.updata();
				 cout << "审核完毕" << endl;
				 break;
			 }
		 }
		 cout << "输入有误,请重新输入" << endl;

	 }
	 system("pause");
	 system("cls");
 }
		

机房预约系统.cpp

#include<iostream>
using namespace std;
#include"Identity.h"
#include<fstream>
#include<string>
#include"globalFile.h"
#include"manager.h"
#include"student.h"
#include"teacher.h"

//管理员菜单
void managerMenu(Identity* &manager)
{
	
	while (true)
	{
		manager->operMenu();

		Manager* man = (Manager*)manager;

		int choose;
		cin >> choose;
		switch (choose)
		{
		case 1:
			cout << "添加账号" << endl;
			man->addPerson();
			break;
		case 2:
			cout << "查看账号" << endl;
			man->showPerson();
			break;
		case 3:
			cout << "查看机房" << endl;
			man->showComputer();
			break;
		case 4:
			cout << "清楚记录" << endl;
			man->cleanFile();
			break;
		case 0:
			delete manager;
			cout << "注销成功" << endl;
			system("pause");
			system("cls");
			return;
		default:
			break;
		}
	}
}

//学生菜单
void studentMenu(Identity*& student)
{
	while (true)
	{
		student->operMenu();

		Student* stu = (Student*)student;
		int select = 0;
		cin >> select;

		if (select == 1)
		{
			stu->applyOrder();
		}
		else if (select == 2)
		{
			stu->showMyOrder();
		}
		else if (select == 3)
		{
			stu->showAllOrder();
		}
		else if (select == 4)
		{
			stu->cancelOrder();
		}
		else
		{
			delete student;
			cout << "搞完咯!" << endl;
			system("pause");
			system("cls");
			return;
		}

	}
}

//教师菜单
void teacherMenu(Identity*& teacher)
{
	while (true)
	{
		teacher->operMenu();
		Teacher* tea = (Teacher*)teacher;
		int select = 0;

		cin >> select;
		if (select == 1)
		{
			tea->showAllOrder();

		}
		else if (select == 2)
		{
			tea->validOrder();
		}
		else
		{
			delete teacher;
			cout << "注销成功"<<endl;
			system("pause");
			system("cls");
			return;
		}
	}
	
	
}
//登录功能
void LoginIn(string filename, int type)
{
	Identity* Person = NULL;


	ifstream ifs;
	ifs.open(filename, ios::in);
	if (!ifs.is_open())
	{
		cout << "文件不存在" << endl;
		ifs.close();
		return;
	}

	int id = 0;
	string name;
	string pwd;

	if (type == 1)
	{
		cout << "请输入学号" << endl;
		cin >> id;
	}
	else if (type == 2)
	{
		cout << "请输入您的职工号" << endl;
		cin >> id;
	}

	cout << "请输入用户名" << endl;
	cin >> name	;

	cout << "请输入密码" << endl;
	cin >> pwd;


	if (type == 1)
	{
		int fid;
		string fname;
		string fpwd;
		while (ifs >> fid && ifs >> fname && ifs >> fpwd)
		{
			if (fid == id && fname == name && fpwd == pwd)
			{
				cout << "学生登陆成功" << endl;
				system("pause");
				system("cls");

				Person = new Student(id, name, pwd);
				studentMenu(Person);

				return;
			}
		}
	}
	else if (type == 2)
	{
		int fid;
		string fname;
		string fpwd;
		while (ifs >> fid && ifs >> fname && ifs >> fpwd)
		{
			if (fid == id && fname == name && fpwd == pwd)
			{
				cout << "老师登陆成功" << endl;
				system("pause");
				system("cls");
				
				Person = new Teacher(id, name, pwd);
				teacherMenu(Person);
				return;
			}
		}
	}
	else if (type == 3)
	{
		string fname;
		string fpwd;
		while (ifs >> fname && ifs >> fpwd)
		{
			if (fname == name && fpwd == pwd)
			{
				cout << "管理员登陆成功" << endl;
				system("pause");
				system("cls");

				Person = new Manager(name, pwd);
				managerMenu(Person);
				return;

			}
		}
	}

	cout << "验证登陆失败!" << endl;
	system("pause");
	system("cls");
	return;
}


int main()
{

	int select = 0;
	while (true)
	{
		cout << "===================   欢迎来到传智播客机房预约系统    ====================";
		cout << endl;
		cout << endl << "请输入您的身份" << endl;
		cout << "\t\t-----------------------------------------\n";
		cout << "\t\t|                                        |\n";
		cout << "\t\t|              1、学生代表               |\n";
		cout << "\t\t|                                        |\n";
		cout << "\t\t|              2、老    师               |\n";
		cout << "\t\t|                                        |\n";
		cout << "\t\t|              2、管 理 员               |\n";
		cout << "\t\t|                                        |\n";
		cout << "\t\t|              0、退    出               |\n";
		cout << "\t\t|                                        \n";
		cout << "\t\t-----------------------------------------\n";
		cout << "请输入您的选择";
		cout << endl;
		cin >> select;

		switch (select)
		{
		case 0:
			cout << "欢迎下一次使用" << endl;
			system("pause");
			return 0;
			break;
		case 1:
			LoginIn(STUDENT_FILE, select);
			break;
		case 2:
			LoginIn(TEACHER_FILE, select);
			break;
		case 3:
			LoginIn(ADMIN_FILE, select);
			break;
		default:
			cout << "请重新输入" << endl;
			system("pause");
			system("cls");
			break;
		}
	}



	system("pause");
	return 0;
}

  • 1
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值