C++ The system that you will develop must have the basic operation of a store in line. These are the features you should
Posted: Tue Jul 12, 2022 8:17 am
C++
The system that you will develop must have the basic operationof a store in line.
These are the features you should have.
- A menu showing the different things a user can do - Theability to view all items in the store
- The ability to search for items by name
- The store must have categories/departments for the articles,for For example, if it is a clothing store, the categories could befootwear, accessories, underwear, pants, shirts, etc
. - The ability to search for items by category/department
- You must manage a sales cart for the user, in which the useryou can add, remove or review the items in your cart
- Once the user wants to finalize the purchase, you must showhim the amount breakdown of each item, the subtotal (cost of theitems) and the total (subtotal + tax + shipping cost), and ask forthe delivery address.
- When a sale is made, you must reduce the inventory of theproducts and make a record of that sale.
- You should also be able to add new items to your inventory, orincrease the inventory of existing items.
2. All the .cpp and .h files needed to run your program.
The system that you will develop must have the basic operationof a store in line.
These are the features you should have.
- A menu showing the different things a user can do - Theability to view all items in the store
- The ability to search for items by name
- The store must have categories/departments for the articles,for For example, if it is a clothing store, the categories could befootwear, accessories, underwear, pants, shirts, etc
. - The ability to search for items by category/department
- You must manage a sales cart for the user, in which the useryou can add, remove or review the items in your cart
- Once the user wants to finalize the purchase, you must showhim the amount breakdown of each item, the subtotal (cost of theitems) and the total (subtotal + tax + shipping cost), and ask forthe delivery address.
- When a sale is made, you must reduce the inventory of theproducts and make a record of that sale.
- You should also be able to add new items to your inventory, orincrease the inventory of existing items.
2. All the .cpp and .h files needed to run your program.