day2 C++

day2 C++_第1张图片

封装一个矩形类(Rect),拥有私有属性:宽度(width)、高度(height),

定义公有成员函数:

初始化函数:void init(int w, int h)

更改宽度的函数:set_w(int w)

更改高度的函数:set_h(int h)

输出该矩形的周长和面积函数:void show()

#include 
using namespace std;
class Rect
{
private:
    int width;
    int height;
public:
    void init(int w,int h)
    {
        width=w;
        height=h;
    }
    void set_w(int w)
    {
        width=w;
    }
    void set_h(int h)
    {
        height=h;
    }
    void show()
    {
        cout << "矩形周长为:" << (width+height)*2 << endl;
        cout << "矩形面积为:" << width*height << endl;
    }
};
int main()
{
    Rect s;
    int w,h;
    cout << "请输入要初始化的宽度和高度:";
    cin >> w >> h;
    s.init(w,h);
    s.show();
    cout << "请输入要改变的宽度:";
    cin >> w;
    s.set_w(w);
    s.show();
    cout << "请输入要改变的高度:";
    cin >> h;
    s.set_h(h);
    s.show();
    return 0;
}

day2 C++_第2张图片

你可能感兴趣的:(算法,c++,开发语言)