/***************************************************************************** * Outputs the area and perimeter of a paralelogram. * * Inputed: len (length), wid (width). * * Outputed: area (area) [=len*wid], perimenter (length of perimeter) * * [=len+len+wid+wid] * * Written: September 12, 2001 * * By: Ronald Roberts * *****************************************************************************/ //Program 1 //12SEP01 #include int main() { double len, wid, area, perimeter; cout<<"Please Enter The Length"<>len; cout<<"Please Enter The Width"<>wid; area=len*wid; perimeter=len+len+wid+wid; cout<<"The area is "<