1.XMIND
2.
自己封装一个矩形类(Rect),拥有私有属性:宽度(width)、高度(height),定义公有成员函数:
初始化函数:void init(int w, int h)
更改宽度的函数:set_w(int w)
更改高度的函数:set_h(int h)
输出该矩形的周长和面积函数:void show()
#include <iostream>using namespace std;class Rect
{
private:int width;int height;
public:void set_w(int w);//设置宽度void set_h(int h);//设置高度int get_w();//获取宽度int get_h();//获取高度void show();//显示周长和面积
};int main()
{Rect r;//实例化了一个Rect类的类对象rr.set_w(10);//设置宽度r.set_h(3);//设置高度cout << "宽度:" << r.get_w() << endl;cout << "高度:" << r.get_h() << endl;r.show();return 0;
}void Rect::set_w(int w)
{width = w;
}
void Rect::set_h(int h)
{height = h;
}
int Rect::get_w()
{return width;
}
int Rect::get_h()
{return height;
}void Rect::show()
{cout << "周长 = " << (width+height)*2 << endl;cout << "面积 = " << width*height << endl;
}