Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

A community has 7 swimming pools with coordinates A(4,8), B(1,3), C(4,2), D(13,1), E(12,9), F(10,5), G(6,6) 1. Create three classes: Pool, Temperature , and Location .

A community has 7 swimming pools with coordinates A(4,8), B(1,3), C(4,2), D(13,1), E(12,9), F(10,5), G(6,6)

1. Create three classes: Pool, Temperature, and Location.

2. A swimming pool shall have an object of Temperature and an object of Location as data

members. (Compositionally speaking: A pool has-a temperature, and a pool has-a location)

3. A temperature has degree and scale.

4. A location is defined by (x, y); hence a location has an x value and a y value.

5. Provide ToString method for all three classes.

6. Provide other member methods for each of the classes properly . For example, a FindDistance method to find the distance between pools.

7. All methods shall be public.

8. The Pool class shall have a static data member Count The driver program shall print out the static member count before any pool object is created, and also after each pool is instantiated.

9. A maintenance crew can set the temperature for each pool within the range of 98 oF and

104 oF.

Note: generate a random number between [98, 104].

10. A maintenance person will go through all seven pools and set the temperatures. The person starts from location (0,0), and will go to the nearest pool after she/he finishes the job. The process continues until all the pools are visited. Each pool can only be visited once.

Your driver program determines and displays the route she/he takes to visit all the pools

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

More Books

Students also viewed these Databases questions