自己封装一个矩形类(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<<"circumference="<<(width+height)*2<
- cout<<"area="<
- }
- };
-
- int main()
- {
- Rect rect;
- rect.init(4,9);
- rect.set_h(10);
- rect.set_w(8);
- rect.show();
- return 0;
- }
-
相关阅读:
【Python】语言学习
docker的使用方法
【保姆式教程】用PowerDesigner导出数据库表结构为Word/Excel表格
岁月
通过http发送post请求的三种Content-Type分析
《500强高管谈VE》-电力流通机器的VE活动
6.ELK之Elasticsearch嵌套(Nested)类型
【C++】数组和指针的爱恨情仇。。。
原创|对接三方服务商回调鉴权的程序代码设计
免费开源圈子社交交友社区系统 可打包小程序 支持二开 源码交付!
-
原文地址:https://blog.csdn.net/m0_61902319/article/details/136661032