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

📄 pentagon_hexagon.h

📁 linux下C++实现插件技术,详情请见http://masterdog.bokee.com/563395.html
💻 H
字号:
/* pentagon_hexagon.h */

#ifndef __PENTAGON_HEXAGON_H__
#define __PENTAGON_HEXAGON_H__

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

class CPentagon : public CPolygon
{
public:
	
	virtual double area(void) const;
	
};

class CHexagon : public CPolygon
{
public:
	
	virtual double area(void) const;
	
};

#endif /* __PENTAGON_HEXAGON_H__ */

⌨️ 快捷键说明

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