c++day2

cpp 复制代码
#include <iostream>

using namespace std;

class Rect
{
private:
    int width;
    int hight;
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;
    hight = h;
}

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

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

void Rect::show()
{
    cout << "width = " << width << "\t hight = " << hight << "\t周长 = " << 2*(width+hight) << endl;
    cout << "width = " << width << "\t hight = " << hight << "\t面积 = " << width*hight << endl;
}
int main()
{
    Rect re;
    re.init(4, 5);
    re.show();
    re.set_h(10);
    re.show();
    re.set_w(10);
    re.show();
    return 0;
}
相关推荐
我不会编程5553 分钟前
Python Cookbook-5.1 对字典排序
开发语言·数据结构·python
李少兄4 分钟前
Unirest:优雅的Java HTTP客户端库
java·开发语言·http
懒羊羊大王&28 分钟前
模版进阶(沉淀中)
c++
无名之逆29 分钟前
Rust 开发提效神器:lombok-macros 宏库
服务器·开发语言·前端·数据库·后端·python·rust
似水এ᭄往昔34 分钟前
【C语言】文件操作
c语言·开发语言
啊喜拔牙42 分钟前
1. hadoop 集群的常用命令
java·大数据·开发语言·python·scala
owde1 小时前
顺序容器 -list双向链表
数据结构·c++·链表·list
xixixin_1 小时前
为什么 js 对象中引用本地图片需要写 require 或 import
开发语言·前端·javascript
GalaxyPokemon1 小时前
Muduo网络库实现 [九] - EventLoopThread模块
linux·服务器·c++
W_chuanqi1 小时前
安装 Microsoft Visual C++ Build Tools
开发语言·c++·microsoft