Docsity
Docsity

Prepare for your exams
Prepare for your exams

Study with the several resources on Docsity


Earn points to download
Earn points to download

Earn points by helping other students or get them with a premium plan


Guidelines and tips
Guidelines and tips

Salesperson - Computers and Programming I - Home Work, Lecture notes of Computer Programming

Some concept of Computers and Programming I are Assign Value, Single-Subscripted Array, Class Members, Current Precision, Elementary School, Complete Program, Fibonacci Sequence, Programming Errors. Main points of this homework are: Salesperson, Double-Subscripted Array, Different Products, Salesperson, Passes, Salesperson Number, Product Number, Total Dollar Value, Product Sold, Salesperson Passes

Typology: Lecture notes

2012/2013

Uploaded on 04/27/2013

kid
kid 🇮🇳

4.3

(18)

111 documents

1 / 1

Toggle sidebar

This page cannot be seen from the preview

Don't miss anything!

bg1
Question 1
Use a double-subscripted 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 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 double-subscripted array sales. After processing all the
information for last month, print the results in tabular format with each of
the rows representing a particular salesperson and each of the columns
representing a product. Cross total each row to get the total sales of each
salesperson for last month. Cross total each column to get the total sales by
product 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.

Partial preview of the text

Download Salesperson - Computers and Programming I - Home Work and more Lecture notes Computer Programming in PDF only on Docsity!

Question 1

Use a double-subscripted 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 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 double-subscripted array sales. After processing all the information for last month, print the results in tabular format with each of the rows representing a particular salesperson and each of the columns representing a product. Cross total each row to get the total sales of each salesperson for last month. Cross total each column to get the total sales by product 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.