Create an Inventory class named, Inventory.cpp, that can hold information and calculate data for items in a retail store’s inventory. The class should have the following private member variables: Variable Name Description itemNumber An integer that holds the item’s item number. quantity An integer for holding the quantity of the items on hand. cost A double for holding the wholesale per-unit cost of the item totalCost A double for holding the total inventory cost of the item (calculated as quantity times cost). The class should have the following public member functions: Member Function Description Default Constructor Sets all the member variables to 0. Constructor #2 Accepts an item’s number, cost, and quantity as arguments. The function should copy these values to the appropriate member variables. setItemNumber Accepts an integer argument that is copied to the itemNumber member variable. setQuantity Accepts an integer argument that is copied to the quantity member variable. setCost Accepts a double argument that is copied to the cost member variable. setTotalCost Calculates the total inventory cost for the item (quantity times cost) and stores the result in totalCost. getItemNumber Returns the value in itemNumber. getQuantity Returns the value in quantity. getCost Returns the value in cost. getTotalCost Returns the value in totalCost. Test the class with the main program, Program7.cpp, provided. You are allowed to modify only line 149. If you modify any other part of the program, you will not receive credit for Program 7. Do not accept negative values for item number, quantity, or cost.

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter12: Adding Functionality To Your Classes
Section: Chapter Questions
Problem 1PP
icon
Related questions
Question

Create an Inventory class named, Inventory.cpp, that can hold information and calculate
data for items in a retail store’s inventory.
The class should have the following private member variables:
Variable Name Description
itemNumber An integer that holds the item’s item number.
quantity An integer for holding the quantity of the items on hand.
cost A double for holding the wholesale per-unit cost of the item
totalCost A double for holding the total inventory cost of the item
(calculated as quantity times cost).
The class should have the following public member functions:
Member Function Description
Default Constructor Sets all the member variables to 0.
Constructor #2 Accepts an item’s number, cost, and quantity as arguments.
The function should copy these values to the appropriate
member variables.
setItemNumber Accepts an integer argument that is copied to the
itemNumber member variable.
setQuantity Accepts an integer argument that is copied to the quantity
member variable.
setCost Accepts a double argument that is copied to the cost
member variable.
setTotalCost Calculates the total inventory cost for the item (quantity
times cost) and stores the result in totalCost.
getItemNumber Returns the value in itemNumber.
getQuantity Returns the value in quantity.
getCost Returns the value in cost.
getTotalCost Returns the value in totalCost.

Test the class with the main program, Program7.cpp, provided. You are allowed to modify only line 149. If you modify any other part of the program, you will not receive credit for Program 7.
Do not accept negative values for item number, quantity, or cost.

25
#include <iostream>
26
#include <iomanip>
27
#include <conio.h>
#include "Inventory.h"
using namespace std;
void testInventory(Inventory &, Inventory &);
void developerInfo();
void holdScreen();l
28
29
30
31
32
33
int main()
35 E {
34
36
cout <« fixed
« showpoint
« setprecision(2);
37
38
developerInfo();
Inventory stockIteml;
Inventory stockItem2(124, 12, 84.95);
testInventory(stockItem1, stockItem2);
holdScreen();
return e;
39
40
41
42
43
44
}
void testInventory(Inventory &stockIteml, Inventory &stockItem2)
{
// Demonstrate the default constructor
cout <« "\nDemonstrating the default constructor...\n";
cout << "Item number:
cout <« "Quantity
45
46
47
48
49
« stockIteml.getItemNumber () « endl;
« stockItem1.getQuantity() <« endl;
« stockIteml.getCost() « endl;
« stockIteml.getTotalCost() « endl;
50
51
52
cout << "Cost
53
cout << "Total Cost :
54
// Now demonstrate the overloaded constructor
cout <« "\nDemonstrating the overloaded constructor...\n";
stockItem2.setTotalCost();
cout <« "Item number:
55
56
57
« stockItem2.getItemNumber () <« endl;
« stockItem2.getQuantity() « endl;
« stockItem2.getCost() <« endl;
« stockItem2.getTotalCost() « endl;
58
59
cout <« "Quantity
60
cout << "Cost
61
cout << "Total Cost :
Transcribed Image Text:25 #include <iostream> 26 #include <iomanip> 27 #include <conio.h> #include "Inventory.h" using namespace std; void testInventory(Inventory &, Inventory &); void developerInfo(); void holdScreen();l 28 29 30 31 32 33 int main() 35 E { 34 36 cout <« fixed « showpoint « setprecision(2); 37 38 developerInfo(); Inventory stockIteml; Inventory stockItem2(124, 12, 84.95); testInventory(stockItem1, stockItem2); holdScreen(); return e; 39 40 41 42 43 44 } void testInventory(Inventory &stockIteml, Inventory &stockItem2) { // Demonstrate the default constructor cout <« "\nDemonstrating the default constructor...\n"; cout << "Item number: cout <« "Quantity 45 46 47 48 49 « stockIteml.getItemNumber () « endl; « stockItem1.getQuantity() <« endl; « stockIteml.getCost() « endl; « stockIteml.getTotalCost() « endl; 50 51 52 cout << "Cost 53 cout << "Total Cost : 54 // Now demonstrate the overloaded constructor cout <« "\nDemonstrating the overloaded constructor...\n"; stockItem2.setTotalCost(); cout <« "Item number: 55 56 57 « stockItem2.getItemNumber () <« endl; « stockItem2.getQuantity() « endl; « stockItem2.getCost() <« endl; « stockItem2.getTotalCost() « endl; 58 59 cout <« "Quantity 60 cout << "Cost 61 cout << "Total Cost :
// Now demonstrate the member "set" functions
stockItem2.setItemNumber (243);
stockItem2.setQuantity(50);
stockItem2.setCost(9.50);
stockItem2.setTotalCost();
63
64
65
66
67
68
cout « "\nDemonstrating the \"set\" functions...\n";
cout << "Item number:
cout <« "Quantity
cout << "Cost
cout << "Total Cost :
69
« stockItem2.getItemNumber () « endl;
" « stockItem2.getQuantity() « endl;
« stockItem2.getCost() « endl;
« stockItem2.getTotalCost() « endl;
70
71
72
73
74
// Now demonstrate the input validation functions
cout « "\nDemonstrating the input validation functions...\n";
stockItem2.setItemNumber (-1);
stockItem2.setQuantity(-1);
stockItem2.setCost(-1);
stockItem2.setTotalCost();
75
76
77
78
79
80
81
cout <« "\nItem number:
cout « "Quantity
cout <« "Cost
« stockItem2.getItemNumber () <« endl;
« stockItem2.getQuantity() « endl;
« stockItem2.getCost() « endl;
« stockItem2.getTotalCost() « endl;
82
83
84
85
cout <« "Total Cost :
}
void holdScreen()
{
char ch;
86
87
88
89
90
cout <« "\nPress any key to exit... ";
ch =
91
92
getch();
}
void developerInfo()
95 E {
93
94
cout << "Name:
<Enter your full name here>" « endl;
cosc-1337 Programming Fundamentals II" « endl;
96
97
cout <« "Course:
cout <« "Program: Seven"
<« endl
« endl;
98
99
100
Transcribed Image Text:// Now demonstrate the member "set" functions stockItem2.setItemNumber (243); stockItem2.setQuantity(50); stockItem2.setCost(9.50); stockItem2.setTotalCost(); 63 64 65 66 67 68 cout « "\nDemonstrating the \"set\" functions...\n"; cout << "Item number: cout <« "Quantity cout << "Cost cout << "Total Cost : 69 « stockItem2.getItemNumber () « endl; " « stockItem2.getQuantity() « endl; « stockItem2.getCost() « endl; « stockItem2.getTotalCost() « endl; 70 71 72 73 74 // Now demonstrate the input validation functions cout « "\nDemonstrating the input validation functions...\n"; stockItem2.setItemNumber (-1); stockItem2.setQuantity(-1); stockItem2.setCost(-1); stockItem2.setTotalCost(); 75 76 77 78 79 80 81 cout <« "\nItem number: cout « "Quantity cout <« "Cost « stockItem2.getItemNumber () <« endl; « stockItem2.getQuantity() « endl; « stockItem2.getCost() « endl; « stockItem2.getTotalCost() « endl; 82 83 84 85 cout <« "Total Cost : } void holdScreen() { char ch; 86 87 88 89 90 cout <« "\nPress any key to exit... "; ch = 91 92 getch(); } void developerInfo() 95 E { 93 94 cout << "Name: <Enter your full name here>" « endl; cosc-1337 Programming Fundamentals II" « endl; 96 97 cout <« "Course: cout <« "Program: Seven" <« endl « endl; 98 99 100
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 4 steps with 1 images

Blurred answer
Knowledge Booster
JQuery and Javascript
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
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