Write a C++ program Create an Invoice class that contains associative array (map) with key object Stock and value its price. In the Invoice class to be realized 1. the methods for adding and removing goods 2. method for calculating the amount paid for all purchases 3. method for searching for a commodity by its code Add and change methods accept an object of class Stock as an argument. class Stock { int code; string name; double valuePerUnit; int numberUnits; public: Stock() { code 0; II II name ""; valuePerUnit = 1; numberUnits 1; } Stock(int c,string n, double v, int nu) { code = C; name = n; valuePerUnit = v; numberUnits = nu; }

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter12: Adding Functionality To Your Classes
Section12.2: Providing Class Conversion Capabilities
Problem 5E
icon
Related questions
Question
I need the answer as soon as possible
Write a C++ program
Create an Invoice class that contains
associative array (map) with key object Stock and value its price.
In the Invoice class to be realized
1. the methods for adding and removing goods
2. method for calculating the amount paid for all purchases
3. method for searching for a commodity by its code
Add and change methods accept an object of class Stock as an argument.
class Stock {
int code;
string name;
double valuePerUnit;
int numberUnits;
public:
Stock() {
code
0;
II II
name
"";
valuePerUnit =
1;
numberUnits
13;
}
Stock(int c,string n, double v, int nu)
{
code
= C;
name = n;
valuePerUnit
= v;
numberUnits
nu;
%3D
}
Transcribed Image Text:Write a C++ program Create an Invoice class that contains associative array (map) with key object Stock and value its price. In the Invoice class to be realized 1. the methods for adding and removing goods 2. method for calculating the amount paid for all purchases 3. method for searching for a commodity by its code Add and change methods accept an object of class Stock as an argument. class Stock { int code; string name; double valuePerUnit; int numberUnits; public: Stock() { code 0; II II name ""; valuePerUnit = 1; numberUnits 13; } Stock(int c,string n, double v, int nu) { code = C; name = n; valuePerUnit = v; numberUnits nu; %3D }
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps

Blurred answer
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning