// driver.cpp // Driver program for the rectangle class // Example for COSC 251 // Alan Jamieson // Spring 2008 // include the header files to be used #include "rectangle.h" // required for cout and cin #include int main(){ //creation of a rectangle object using the default constructor rectangle myr; //creation of a rectangle object using the other constructor rectangle myotherr(25, 15); //print out of the areas of the two rectangles cout<