// Project Vector // File main.cpp #include using namespace std; #include "vector.h" int main() { int a[] = {1, 3, 5, 7}, b[] = {2, 4, 6}; int c[] = {7, 2, 4, 1}; Vector u(4, a), v(3, b), w(4, c); Vector x, y; u.print(); cout << u << v << w << endl; x = v; y = u + w; cout << x << y << endl; y = u + v; cout << y << endl; return EXIT_SUCCESS; } // Output: // (1,3,5,7) // (1,3,5,7) // (2,4,6) // (7,2,4,1) // // (2,4,6) // (8,5,9,8) // // ( )