#include "rectangle.cpp" #include using namespace std; int main() { Rectangle box1(2,3); Rectangle box2(3,4); Rectangle box3; box3.setLength(15); box3.setWidth(5); cout << "The length of box1 is: " << box1.getLength() << endl; cout << "The width of box1 is: " << box1.getWidth() << endl; cout << "The perimeter of box1 is: " << box1.perimeter() << endl; cout << "The area of box1 is: " << box1.area() << endl << endl; cout << "The length of box2 is: " << box2.getLength() << endl; cout << "The width of box2 is: " << box2.getWidth() << endl; cout << "The perimeter of box2 is: " << box2.perimeter() << endl; cout << "The area of box2 is: " << box2.area() << endl << endl; cout << "The length of box3 is: " << box3.getLength() << endl; cout << "The width of box3 is: " << box3.getWidth() << endl; cout << "The perimeter of box3 is: " << box3.perimeter() << endl; cout << "The area of box3 is: " << box3.area() << endl << endl; return 0; }