设计一个矩形类属性为矩形的左下角与右上角的坐标,矩形水平放置。操作为计算矩形的周长与面积c++
时间: 2024-02-13 19:00:55 浏览: 75
基于C++的图形面积周长计算器设计.zip
5星 · 资源好评率100%
好的,以下是一个C++实现的矩形类,其中包含左下角和右上角坐标属性及计算周长和面积的方法:
```cpp
#include <iostream>
using namespace std;
class Rectangle {
public:
Rectangle(int x1, int y1, int x2, int y2) {
this->x1 = x1;
this->y1 = y1;
this->x2 = x2;
this->y2 = y2;
}
int perimeter() {
return 2 * (x2 - x1 + y2 - y1);
}
int area() {
return (x2 - x1) * (y2 - y1);
}
private:
int x1, y1, x2, y2;
};
```
在这个类中,构造函数用于初始化左下角和右上角的坐标属性。`perimeter` 方法根据矩形的左下角和右上角坐标计算矩形周长。`area` 方法计算矩形面积。
您可以使用以下代码创建一个矩形对象,并计算其周长和面积:
```cpp
int main() {
Rectangle rect(0, 0, 5, 3);
cout << "矩形周长:" << rect.perimeter() << endl;
cout << "矩形面积:" << rect.area() << endl;
return 0;
}
```
输出结果如下:
```
矩形周长:16
矩形面积:15
```
希望这个矩形类能够满足您的需求。
阅读全文