Question Write a complete C++ program that calculates the middle point from a list of points. A point is represented by its coordinates x and y. The middle point is expressed by the average of the coordinates x and y of the points, respectively. For example, if the points are (1,2), (2,4) and (3,3), then the middle point is calculated as: 1+2+3 2+4+3 = (2, 3) 3 1. Declare and define the class Point with the following members: a. The attributes that store the coordinates. b. A constructor (you may choose any type of constructor). c. All the necessary accessor methods. d. All the necessary mutator methods. e. An overloaded operator for the plus (+) operator, which is used for adding two points. For example, given two points p1: (1, 2) and p2: (3, 3), thus p1 + p2 results in a new point, (3, 5) f. An overloaded operator for the division () operator, which is used for performing a division operation between a point with a decimal number. For example, p1/2.0 results in a new point, (0.5, 1) and p2/3.0 results in (1, 1) 2. Define the main function by taking into account the following requirements: a. The list of points are read from the user inputs and stored into an array. b. Your program must use the operators + and / of the class Point for the calculation of the middle point. c. Your program must print the output showing the coordinates x and y of all the points, including the middle point (Refer to Figure 1).

Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
icon
Related questions
Question
Question
Write a complete C++ program that calculates the middle point from a list of points. A point is
represented by its coordinates x and y. The middle point is expressed by the average of the
coordinates x and y of the points, respectively. For example, if the points are (1,2), (2,4) and
(3,3), then the middle point is calculated as:
1+2+3
2+4+3
3
= (2,3)
3
1. Declare and define the class Point with the following members:
a. The attributes that store the coordinates.
b. A constructor (you may choose any type of constructor).
c. All the necessary accessor methods.
d. All the necessary mutator methods.
e. An overloaded operator for the plus (+) operator, which is used for adding two points.
For example, given two points p1: (1, 2) and p2: (3, 3), thus p1 + p2 results in a new
point, (3, 5)
f. An overloaded operator for the division () operator, which is used for performing a
division operation between a point with a decimal number. For example, p1/2.0 results
in a new point, (0.5, 1) and p2/3.0 results in (1, 1)
2. Define the main function by taking into account the following requirements:
a. The list of points are read from the user inputs and stored into an array.
b. Your program must use the operators + and / of the class Point for the calculation of
the middle point.
c. Your program must print the output showing the coordinates x and y of all the points,
including the middle point (Refer to Figure 1).
Transcribed Image Text:Question Write a complete C++ program that calculates the middle point from a list of points. A point is represented by its coordinates x and y. The middle point is expressed by the average of the coordinates x and y of the points, respectively. For example, if the points are (1,2), (2,4) and (3,3), then the middle point is calculated as: 1+2+3 2+4+3 3 = (2,3) 3 1. Declare and define the class Point with the following members: a. The attributes that store the coordinates. b. A constructor (you may choose any type of constructor). c. All the necessary accessor methods. d. All the necessary mutator methods. e. An overloaded operator for the plus (+) operator, which is used for adding two points. For example, given two points p1: (1, 2) and p2: (3, 3), thus p1 + p2 results in a new point, (3, 5) f. An overloaded operator for the division () operator, which is used for performing a division operation between a point with a decimal number. For example, p1/2.0 results in a new point, (0.5, 1) and p2/3.0 results in (1, 1) 2. Define the main function by taking into account the following requirements: a. The list of points are read from the user inputs and stored into an array. b. Your program must use the operators + and / of the class Point for the calculation of the middle point. c. Your program must print the output showing the coordinates x and y of all the points, including the middle point (Refer to Figure 1).
Expert Solution
steps

Step by step

Solved in 3 steps with 2 images

Blurred answer
Recommended textbooks for you
Computer Networking: A Top-Down Approach (7th Edi…
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
Computer Organization and Design MIPS Edition, Fi…
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
Network+ Guide to Networks (MindTap Course List)
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
Concepts of Database Management
Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
Prelude to Programming
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
Sc Business Data Communications and Networking, T…
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY