about summary refs log tree commit diff
path: root/usth/ICT2.2/labwork/3/C++/vector-test.cc
diff options
context:
space:
mode:
Diffstat (limited to 'usth/ICT2.2/labwork/3/C++/vector-test.cc')
-rw-r--r--usth/ICT2.2/labwork/3/C++/vector-test.cc20
1 files changed, 20 insertions, 0 deletions
diff --git a/usth/ICT2.2/labwork/3/C++/vector-test.cc b/usth/ICT2.2/labwork/3/C++/vector-test.cc
new file mode 100644
index 0000000..647c8a6
--- /dev/null
+++ b/usth/ICT2.2/labwork/3/C++/vector-test.cc
@@ -0,0 +1,20 @@
+#include <iostream>
+
+#include "vector.h"
+
+using namespace std;
+
+int
+main ()
+{
+  Vector u (4, 20);
+  Vector v (6, 9);
+  cout << "u = (" << u.x << ", " << u.y << ")" << endl;
+  cout << "v = (" << v.x << ", " << v.y << ")" << endl;
+  Vector w {u + v};
+  cout << "u + v = (" << w.x << ", " << w.y << ")" << endl;
+  w = u - v;
+  cout << "u - v = (" << w.x << ", " << w.y << ")" << endl;
+  w = u * v;
+  cout << "u * v = (" << w.x << ", " << w.y << ")" << endl;
+}