Question: Note: I posted this question earlier and recieved an incorrect solution. Please read the following paragraph before replying with an answer. I finished the following
Note: I posted this question earlier and recieved an incorrect solution. Please read the following paragraph before replying with an answer.
I finished the following assignment but my professor wants me to change some of the logic of it to match what she wants. My code is below the instructions to the assignment. She says my code isn't right because the body of my sort loop doesn't execute, and it if did, it still can't work because a sort requires two nested loops. Finally, totalItems ends up one too high because its incremented before the end of file is detected. To reiterate, all I need is: * To know how to redo A. My sort loop so it uses 2 nested loops and executes, and B. How to prevent the totalItems int from ending up one too high.
I'm not asking for a whole new program, just corrections.
Write a C++ program that reads sales data from a file called sales.txt. Each line of the file contains four data items; 1. A product number which is an integer 2. A product name which is a string no longer than 12 characters and which does not contain spaces 3. A unit price which is a double 4. A number of units sold which is an integer The program will output the two products which generated the highest total revenue (unit price * number sold). Your program must: 1. Read each line of the file storing the four items into the members of a dynamically allocated structure. 2. Store pointers to the structures in an array. 3. Sort the array of pointers by total revenue 4. Display the product name and total revenue of the top two products 5. The program must work for sales.txt files with anywhere from 2 to 100 products
#include
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
