subject

Swimming pool management – (c++)in this programming exercise you will create a simple swimming management program according to the following customer specifications: - write the definition of a class swimmingpool, to implement the properties and functions of a swimming pool. the pool must be a rectangular shaped of any dimension. (20% the class should have the instant variables to store the length (in feet), width (in feet), depth (in feet), amount (in cubic feet), of water in the pool, the rate (in gallons / minute), at which the water is draining from the pool.- must add the swimmingpool constructor(s) and destructor member functions. (10%)- add appropriate accessor and mutator member functions.(10%)- add member functions to do the following: (40% determine the amount of water needed to fill an empty or partially filled determine the time needed to completely or partially fill or empty the pool, and add or drain water for a specific amount of allow adding or subtracting one or more pools (add by adding lenghs, widths and depths, rates and amount – subtract by subtracting lengths, widths, and depths, rates and amount).add a static property (data member) to count the number of swimming pools created and static member function to report this count.(20%)note: the amount of gallons in a cubic feet is 7. use the following driver program to test your class:

ansver
Answers: 3

Another question on Computers and Technology

question
Computers and Technology, 22.06.2019 08:30
Today is the anniversary of me being on yet, i don't need it anymore! here's a picture of my dog wearing a bowtie! my question is, how do i delete my account?
Answers: 1
question
Computers and Technology, 22.06.2019 12:20
Usually, when we sniff packets, we are only interested certain types of packets. we can do that by setting filters in sniffing. scapy’s filter use the bpf (berkeley packet filter) syntax; you can find the bpf manual from the internet. set the following filters and demonstrate your sniffer program again (each filter should be set separately): (a) capture only the icmp packet. (b) capture any tcp packet that comes from a particular ip and with a destination port number 23. (c) capture packets comes from or to go to a particular subnet. you can pick any subnet, such as 128.230.0.0/16; you should not pick the subnet that your vm is attached to.
Answers: 3
question
Computers and Technology, 22.06.2019 22:30
What is the most popular genre of video games?
Answers: 1
question
Computers and Technology, 23.06.2019 02:00
Consider the following function main: int main() { int alpha[20]; int beta[20]; int matrix[10][4]; . . } a. write the definition of the function inputarray that prompts the user to input 20 numbers and stores the numbers into alpha. b. write the definition of the function doublearray that initializes the elements of beta to two times the corresponding elements in alpha. make sure that you prevent the function from modifying the elements of alpha. c. write the definition of the function copyalphabeta that stores alpha into the first five rows of matrix and beta into the last five rows of matrix. make sure that you prevent the function from modifying the elements of alpha and beta. d. write the definition of the function printarray that prints any onedimensional array of type int. print 15 elements per line. e. write a c11 program that tests the function main and the functions discussed in parts a through d. (add additional functions, such as printing a two-dimensional array, as needed.)
Answers: 3
You know the right answer?
Swimming pool management – (c++)in this programming exercise you will create a simple swimming manag...
Questions