本文介绍: 【代码】华清远见嵌入式学习——C++——作业2。

作业要求:

代码

#include <iostream>

using namespace std;

class Rect
{
private:
    int width;
    int height;

public:
    void init(int w,int h);
    void set_w(int w);
    void set_h(int h);
    void show();
};

void Rect::init(int w,int h)
{
    width = w;
    height = h;
}

void Rect::set_w(int w)
{
    width = w;
}

void Rect::set_h(int h)
{
    height = h;
}

void Rect::show()
{
    cout << "矩形周长为: " << (width+height)*2 << endl;
    cout << "矩形面积为: " << width*height << endl;
}

int main()
{
    Rect rect;
    int wid,hei;
    cout << "请输入矩形的宽和高:";
    cin >> wid >> hei;


    rect.init(wid,hei);
    rect.show();

    cout << "请输入要改变的矩形的宽:";
    cin >> wid;
    rect.set_w(wid);
    rect.show();

    cout << "请输入要改变的矩形的高: ";
    cin >> hei;
    rect.set_h(hei);
    rect.show();
    return 0;
}

代码效果图

思维导图:

原文地址:https://blog.csdn.net/qq_54502935/article/details/134695874

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。

如若转载,请注明出处:http://www.7code.cn/show_10263.html

如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱:suwngjj01@126.com进行投诉反馈,一经查实,立即删除

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注