定义一个描述矩形的类Rectangle,包括的数据成员有宽(width)和长(length),并实现如下功能函数;

日期:2018-04-09 11:06:57 人气:1

定义一个描述矩形的类Rectangle,包括的数据成员有宽(width)和长(length),并实现如下功能函数;

代码如下: class Recangle{ private: int width; int length; public: Recangle() {width = 0; length = 0;}; Recangle(int w,int h) {width = w; height = h;}; int circumference() {return 2*(width+height)}; int Area() {return width * height}; void changeRec(int w, int
    A+
热门评论