Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

Write a program that calculates information about sales during a year. This prog

ID: 671576 • Letter: W

Question

Write a program that calculates information about sales during a year. This program will have an array that will hold the sales totals for 4 divisions (North, South, East and West, stored in an array as strings for the output) and for 4 quarters. This array will also hold the total for each division and for each quarter. These totals will be calculated by the program once the values have been inputted by the user. So this array will be a 2-dimensional array with the quarters as the columns and the divisions as the rows. The last column will hold the totals for the rows (division totals) and the last row will hold the totals for the columns (quarter totals). The program must use/create the following functions:

double getTotal(double [][COLS]) // gets the total of the complete array except for the totals in the last column and last row.

double getAverage(double [][COLS]) // return the average of all the values in the array except for the column and row with the totals in them.

double getRowTotal(double [][COLS], int) // returns the total for row that is specified by the second parameter to the function.

double getColumnTotal(double [][COLS], int) // returns the total for a column that is specified by the second parameter to the function.

double getHighest(double [][COLS], int&, int&) //returns the highest value in the array. Last two parameters are the index values of where the highest value is located in the 2D array, these can then be used to display which division and quarter.

double getLowest(double [][COLS], int&, int&) //returns the lowest value in the array. Last two parameters are the index values of where the highest value is located in the 2D array; these can then be used to display which division and quarter.

The program should output a table in the same format as below which will then be followed by the division and quarter with the highest value and the division and quarter with the lowest value.

Quarter 1

Quarter 2

Quarter 3

Quarter 4

Division Total

North

South

East

West

Quarter Total

Quarter 1

Quarter 2

Quarter 3

Quarter 4

Division Total

North

South

East

West

Quarter Total

Explanation / Answer

#include #include #include using namespace std; char again; const int COLS = 4; const int ROWS = 3; void showArray(const int[][COLS], int); int getTotal(const int [][COLS]); double getAverage(const int[][COLS]); int getRowTotal(const int[ROWS][COLS], int); int getColumnTotal(const int[ROWS][COLS], int); int getHighest(const int[][COLS], int); int getLowest(const int[][COLS], int); int main() { int a = 1; int table1[ROWS][COLS] = {{12, 11, 10, 9}, {8, 7, 6, 5}, {4, 3, 2, 1}}; int total = 0; double average = 0; int rowTotal = 0; int columnTotal = 0; int highestRow = 0; int lowestRow = 0; do { total = getTotal(table1); average = getAverage(table1); rowTotal = getRowTotal(table1, a); columnTotal = getColumnTotal(table1, a); highestRow = getHighest(table1, a); lowestRow = getLowest(table1, a); cout
Hire Me For All Your Tutoring Needs
Integrity-first tutoring: clear explanations, guidance, and feedback.
Drop an Email at
drjack9650@gmail.com
Chat Now And Get Quote