Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Language - C Please add comments Total Sales Use a two-dimensional array to solve the following problem. A company has four salespeople (0 to 3)

Language - C

image text in transcribed

Please add comments

Total Sales Use a two-dimensional array to solve the following problem. A company has four salespeople (0 to 3) who sell five different products (0 to 4). Once a day, each salesperson passes in a slip for each different type of product sold. Each slip contains: a. The salesperson number b. The product number c. The total dollar value of that product sold that day Thus, each salesperson passes in between 0 and 5 sales slips per day. Assume that the information from all of the slips for last month is available. Write a program that will read all this information for last month's 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 month, print the results in tabular format with each column representing a particular salesperson and each row representing a particular product. Cross total each row to get the total sales of each product for last month; cross total each column to get the total sales by salesperson for last month. Your tabular printout should include these cross totals to the right of the totaled rows and to the bottom of the totaled columns Microsoft Visual Studio Debug Console Enter the salesperson, product. and total sales. Enter -1 for the salesperson to end input 0 100 1 100 2 100 1 0 200 1 1 200 1 4 200 0 300 4 300 0 300 1 300 3 300 he total sales for each salesperson re displayed at the end of each ow, and the total sales for each roduct are displayed at the bottom f each column 2 100.00 100.00 100.00 0.00 .00 0 0.00 0.00 300.00 0.00 200.00 600.00 0.00 300.00 600.00 0.00 900.00 1 200.00 200.00 300.00 300.00 300.00 900.00 600.00 100.00 300.00 500.0 .00 0.00 300.00

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

Database Processing

Authors: David M. Kroenke, David Auer

11th Edition

B003Y7CIBU, 978-0132302678

More Books

Students also viewed these Databases questions

Question

What is financial statement analysis?

Answered: 1 week ago