⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 standardroom.h

📁 宾馆住宿管理系统,包括住宿登记,计费,退房,查看当前空房等功能.
💻 H
字号:
// Standardroom.h: interface for the Standardroom class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_STANDARDROOM_H__EB2B5233_D2F3_471D_A438_409D89055C16__INCLUDED_)
#define AFX_STANDARDROOM_H__EB2B5233_D2F3_471D_A438_409D89055C16__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

#include<iostream.h>
#include "ROOM.h"

class Standardroom : public ROOM  
{
public:
	Standardroom();
	void sdroom(int dp)
	{
		doorplate=dp;
		
	}
	int Rroom()
	{
		return doorplate;
	}
	float Prc()
	{
		return price;
	}
	virtual void display()
	{
		cout<<"  "<<doorplate;
	}
	virtual ~Standardroom();

protected:

};

#endif // !defined(AFX_STANDARDROOM_H__EB2B5233_D2F3_471D_A438_409D89055C16__INCLUDED_)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -