CJCoding With Joseph
15per day

Vector2D Add-Assign (operator+=)

You are moving a character on a 2D grid.

Create a class Vector2D with two ints: x and y.

Requirements:
1) Constructor Vector2D(int x, int y)
2) Getters getX() const, getY() const
3) Overload operator+= to add another Vector2D into this one and return *this

Do NOT write a main function.

Expected Output:

3 7
-1 0
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.