// Name: msglm // Introduction: Rectangle Program // Description: Program to compute and output the perimeter and area of a rectangle. #include using namespace std; int main() { double length; double width; double area; double perimeter; cout << "Program to compute and output the perimeter and " << "area of a rectangle." <