Question: Write the definition for a class named Vecton2D that stores information about a two-dimensional vector. The class should have methods to get and set the




Write the definition for a class named Vecton2D that stores information about a two-dimensional vector. The class should have methods to get and set the x component and the y component, where x and y are integers. Next, overload the operator so that it returns the dot product of two vectors. The dot product of two-dimensional vectors A and B is equal to Ax Bx) (Ay By Next, overload the and operators so that you can write the following code Vector 2D v; cin v cout Finally, write a main program that tests the three overloaded operators Sample output (10,0) (0,10) 0 (0,10) (10, 10) 100 (10, 10) (5,4) 90 You may use the following main0 function
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
