people.h
来自「这个程序是对电梯的模拟」· C头文件 代码 · 共 35 行
H
35 行
// People.h: interface for the People class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_PEOPLE_H__D8E783EF_DBDE_40CE_A245_560605955221__INCLUDED_)
#define AFX_PEOPLE_H__D8E783EF_DBDE_40CE_A245_560605955221__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "DataInfo.h"
#include "Time.h"
using namespace std;
class People
{
public:
int PressButton();
void OutElevator();
void IntoElevator();
People();
virtual ~People();
public:
Time tm;
int PressButton(int f1,int f2,int b);
bool up;
int to;//the people will go to the floor.
};
#endif // !defined(AFX_PEOPLE_H__D8E783EF_DBDE_40CE_A245_560605955221__INCLUDED_)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?