CJCoding With Joseph
15per day

Vector2D Add and Subtract (operator+ and operator-)

You are doing basic physics with displacement vectors.

Create a class Vector2D with ints x and y.

Requirements:
1) Constructor Vector2D(int x, int y)
2) Getters getX() const, getY() const
3) Overload operator+ and operator- to return NEW vectors

Do NOT write a main function.

Expected Output:

6 2
-2 8
Topics:
ClassesOperator Overloading
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cout, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.