Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

C++ Purpose: This experiment is designed to develop confidence with structs. Readings: The experiment focuses upon the material on structs covered in the text and

C++

Purpose:

This experiment is designed to develop confidence with structs.

Readings:

The experiment focuses upon the material on structs covered in the text and in lecture.

Instructions:

You have been tasked with writing a program to generate a quarterly sales report for your company. The data is in the sales.txt file (Under the Materials category in this weeks module on Canvas). This file contains records similar to:

2013-1003 B 120.00

The first field is the invoice number which is not used, the second is an equipment code and the third is the cost of the parts on that order. The equipment code will be:

A Capital Equipment

B Expensed Equipment

C Small Parts

Your program should read a line from the file into a struct, pass the struct and three accumulator variables to a function and then continue reading lines and calling the accumulator function until it reaches end of file. It should then call the writeReport function to write the report into a text file, inventoryReport.txt:

S A L E S R E P O R T

Capital Equipment $24093.18 26.31%

Expensed Equipment $22222.80 24.27%

Small Parts $45251.98 49.42%

---------

Total Sales $91567.96

The prototype of the accumulator function will be similar to:

void accumulate(const SalesRecord &s, double & Csales, double &Esales, double & Ssales);

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

DB2 11 The Ultimate Database For Cloud Analytics And Mobile

Authors: John Campbell, Chris Crone, Gareth Jones, Surekha Parekh, Jay Yothers

1st Edition

ISBN: 1583474013, 978-1583474013

More Books

Students also viewed these Databases questions

Question

5. What information would the team members need?

Answered: 1 week ago

Question

Which team solution is more likely to be pursued and why?

Answered: 1 week ago