square.h

来自「初学者用的关于VC继承思想的小程序,非常使用于初学者哦」· C头文件 代码 · 共 21 行

H
21
字号
//*************      square.h      ************

#ifndef SQUARE_H
#define SQUARE_H

#include <iostream>
#include <string>

using namespace std;
#include <math.h>

#include "rectangle.h"

class Square : public REctangle
{
public :
	Square(double, double, double, string);
	~Square();
};

#endif

⌨️ 快捷键说明

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