#include "stdafx.h" #include<iostream.h> class c { protected: int w; int h; public:c();//不带参数构造函数 c(int x,int y)//代餐构造函数 {w=x;h=y;} c operator+(c q);//+-=的重制运算符声明 c operator-(c q); c operator=(c q); int gw() {return w;} int gh() {return h;} void print(); };I