#include #include #include"Rectangle.h" using namespace std; int main() { const int size = 5; double height, width; cin >> width >> height; Rectangle rect1(width, height); cin >> width >> height; Rectangle rect2(width, height); cout << fixed << setprecision(2); cout << "SwapByReference:" << rect1.getArea()<<' '<