Answered You can hire a professional tutor to get the answer.

QUESTION

create a pseudocode program using Notepad++ to solve this problem. You MUST use Modular Programming techniques by using Sub Modules in your program....

create a pseudocode program using Notepad++ to solve this problem. You MUST use Modular Programming techniques by using Sub Modules in your program. Your "main" module should not be very large.

Ledger's Furniture Store has 10 salespeople. Ledger's wants to produce a combined monthly sales report for all salespeople. Ledger's wants you to write a program that will allow them to enter data in any order, save the unsorted data to a file, and then produce a file in alphabetical order by last name of the salespeople. The unsorted output file should be named "sales_unsorted.txt" and the sorted file should be named "sales_sorted.txt".

Your unsorted file output should include:

• A list of the salespeople’s names and the monthly sales for each of them.

Your sorted file output should include:

• A list of the salespeople’s name and the monthly sales for each of them.

• At the bottom of the report, list the following:

o The total combined sales for all salespeople.

o The average sales for all salespeople.

o The salesperson with the lowest sales for the month.

o The salesperson with the highest sales for the month.

Start ReadData() WriteUnsortedData() SortData() WriteSortedData() End Module CalculateValues() TotalSales = 0 index = 1 LowestIndex = 1 HighestIndex = 1 while index <= 10 TotalSales = TotalSales...
Show more
LEARN MORE EFFECTIVELY AND GET BETTER GRADES!
Ask a Question