#include "Rectangle.h" #include <iostream> using namespace std; int main() { Rectangle r(0, 0, 0, 1, 1, 1, 1, 0); cout << r.calc_area() << endl; cout << r.calc_perimiter() << endl; r.name(); return 0; }