This is a software that creates shopping lists. The user can add items to it along with their prices and the quantity they want to buy. The software allows the user to keep track of what they need to buy when grocery shopping and it could potentially help them to create a budget before going to the store. The purpose of this software is to applied the knowledge adquired about C++. Some of the knowledge includes public and private variables, functions, classes, and loops. All of these elements were used to create this Inventory System.
A demostration of how the software works and how its code works can be found in the following link:
To develop this software Visual Studio 2022 was used and the C++ libraries included in it.
The Inventory System program was created in C++ using built-in libraries. No third-party libraries were needed or exported to develop this software
Some websites that were helpful in this project:
Some things that you will be added and improved in the future are:
- Measurement units. Right now the program doesn't show any measurement units but in the future the program will ask the user what measurement unit they want to use for each item
- Verify an item exists before deleting it. Right now the program only verifies if an item exists before editing it, but the verification will be added for deleting items as well
- Save the list locally. Currently the program only creates the list and interacts with it until the program is closed, but one of the improvements for the program will be to let the user save their lists locally and load them back when they need them