Question: In C++ Use a two-dimensional array to solve the following problem. A company has four salespeople (1 to 4) who sell five different products (1
In C++
Use a two-dimensional array to solve the following problem. A company has four salespeople (1 to 4) who sell five different products (1 to 5). Once a day, each salesperson passes in a slip for each different type of product sold. Each slip contains the following:
- a) The salesperson numbers
- b) The product numbers
- c) The total dollar value of that product sold that day
Thus, each salesperson passes in between 0 to 5 sales slips per day. Assume that the information from all of the slips for last week is available. Write a program that will read all this information for last's week sales and summarize the total sales by salesperson by product. All totals should be stored in the two-dimensional array sales. After processing all the information for last week, print the results in tabular format with each of the columns representing a particular salesperson and each of the rows representing a particular product. Cross total each row to get the total sales of each product for last week; cross total each column to get the total sales by salesperson for last week. Your tabular printout should include these cross totals to the right of the totaled rows and to the bottom of the totaled columns.
Example of the output:1
The total sales for each salesperson are displayed
at the end of each row, and the total sales for each
product is displayed at the bottom of each column.
1 2 3 4 5 Total
1 0.00 0.00 0.00 0.00 0.00 0.00
2 0.00 0.00 0.00 0.00 0.00 0.00
3 0.00 0.00 0.00 0.00 0.00 0.00
4 0.00 0.00 0.00 0.00 0.00 0.00
Total 0.00 0.00 0.00 0.00 0.00
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
