C++问题:设计一个名为Rectangle的矩形类,其属性为矩形的左下角和右上角两个点的坐标,能计算矩形的面积

问题描述:

C++问题:设计一个名为Rectangle的矩形类,其属性为矩形的左下角和右上角两个点的坐标,能计算矩形的面积
利用组合类,能运行的话会追加分~

给你两种 写法第一种:#include #include class Rectangle{public:Rectangle(int left,int bottom,int right,int top);Rectangle(){ }//int GetLeft() {return itsLeft;}int GetBottom() {return itsBottom;}int Get...