Question: In C++ ASAP The problem 1. Create a class called myPoint with x and y fields 2. Overload the >operator for the class to read
In C++
ASAP

The problem 1. Create a class called myPoint with x and y fields 2. Overload the >operator for the class to read a point in the format (x,y) a. E.g., (4.35, 6.87) should read 4.35 in the field x and 6.87 in the field y 3. 4. Create a class called myLine with two fields of type myPoint. Create a member function in myLine called getLength that computes the length of the line as follows: (xi -x2)2 + (yi - y2)2 if the end points are (xi,yi) and (x2,y2) 5. Overload >, > overload 20 points 3. myLine class 10 points 4. getLength function 10 points 5. Operator > >,
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
