编写程序,定义一个 Rectangle 类,它包含: 数据成员 length , width 成员函数 Rectangle( double l, double w ); // 构造函数 double area(); // 返回矩形面积 double getlength(); // 返回数据成员 length 的值 double getwidth(); // 返回数据成员 width 的值 再定义 Rectangle 的派生类 Rectangular ,它包含: 数据成员 height 成员函数 Rectangular( double l, double w, double h ); // 构造函数 double volume(); // 返回长方体体积 double getheight(); // 返回数据成员 height 的值 在 main 函数中测试类体系,建立两个类的对象,显示它们的数据和面积、体积。