โ Back to Classes
Question 442
Vector2D Add Class
Vector2D Add Class
Create a classVector2Dwith public int fieldsXandYset by the constructor, and anAdd(Vector2D other)method that returns a NEWVector2Dwhose components are the sums of the two vectors. Do not write aMainmethod. 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.