c a program that simulates inventory bins in a warehouse each bin holds a number of 5103072
C++.
A program that simulates inventory bins in a warehouse. Each bin holds a number of the same type of parts. The program should use structure that keeps the following data:
1. Description of the part kept in bin
2. Number of parts in the bin
The program should have an array of 10 bins, initialized with the following data: Part Description |
Number of Parts in the Bin |
Valve |
10 |
Bearing |
5 |
Bushing |
15 |
Coupling |
21 |
Flange |
7 |
Gear |
5 |
Gear Housing |
5 |
Vacuum Gripper |
25 |
Cable |
18 |
Rod |
12 |
The program should have the following functions:
AddParts:a function that increases a specific bin’s part count by specified number.
RemoveParts:a function that decreases a specific bin’s part count by a specified number.
Important components of program:
*When the program runs, it should repeat a loop that performs the following steps:
*The user should see a list of what each bin holds and how many parts are in each bin.
*The user can choose to either quit the program or select a bin.
*When a bin is selected, the user can either add parts to it or remove parts from it.
*The loop then repeats showing the updated bin data on the screen .
*no bin can hold more than 30 parts. Do not let user add more than 30 per bin.
*Do not accept negative values for parts being removed or added.
Attachments: