#include "Rectangle.h" #include void Rectangle::get_info() { cout << "Enter length of rectangle: "; cin >> length; cout << "Enter width of rectangle: "; cin >> width; } double Rectangle::area() { return length*width; } double Rectangle::perimeter() { return 2*length+2*width; }