CJCoding With Joseph

Vector2D Add Class

Create a class Vector2D with public int fields X and Y set by the constructor, and an Add(Vector2D other) method that returns a NEW Vector2D whose components are the sums of the two vectors. Do not write a Main method.

Adding (1, 2) and (3, 4) and printing "X,Y" gives:
4,6

Expected Output:

4,6
Topics:
Classes
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cw, cr, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.