Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Activities 2Document Viewor Thu Sep 27, 14:34 Programming-Exam-1-Section-03.pdf The problem 1. 2. Create a class called myPoint with x and y fields Overload the >>
Activities 2Document Viewor Thu Sep 27, 14:34 Programming-Exam-1-Section-03.pdf The problem 1. 2. Create a class called myPoint with x and y fields 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: (X1-X2)2 + (y1-)2 if the end points are (X1 , y1) and (x2+ 5. 6. Overload >, -to compare two objects of type myLine by comparing their lengths From a file called lines.txt, read a list of end points of a line in the format (x11, y11) (x21,y21) (x12, y12) (x22, y22) Here, (x11, y11)and (x12, y12) are the end points of the first line and so on. Print the length and end points of the longest and shortest lines BONUS-Throw an error if the format of the point for myPoint object is wrong and if the end points of myLine refer to the same point 7. 8. 9. BONUS 2 Create two fields in myLine called slope and intercept using the following formula slope = eif the end points are (xi,yi) and (x2.y2) 1 x2-x1 intercept -y2 - slope X x2 Rubric 1, mvPoint class 10 points
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started