Question: Write a Complete & Efficient C++ code using linked List for Inventory Management System.Initial menu (Menu1)1. Add new Inventory Item2. Make an Inventory Sale3. Buy

Write a Complete & Efficient C++ code using linked List for Inventory Management System.Initial menu (Menu1)1. Add new Inventory Item2. Make an Inventory Sale3. Buy Inventory from Supplier4. Check Stocks
Document Preview:

Pakistan Institute of Engineering and Applied Sciences Object Oriented Programming (OOP) Mini Project 1 Spring 2022 th Deadline: 13 March, 2022 (11:59am) Object Oriented Programming Mini Project 1 DCISTopics Covered 1. Structures in C++ 2. Dynamic Memory Allocation 3. Linked List Introduction Tasks Write a Complete & Efficient C++ code using linked List for Inventory Management System. Initial menu (Menu1) 1. Add new Inventory Item 2. Make an Inventory Sale 3. Buy Inventory from Supplier 4. Check Stocks You may use following structure (or can devise your own) struct inventory_item { Char * item_name; Int item_id; Float price_per_item; int qty; Inventory_item * nptr; }; Object Oriented Programming Mini Project 1 DCISOption 1 (Add new Inventory Item) - When user selects this, they are going to add a new inventory item in the list (not previously added). - Program will take following inputs for this item: Item Id (unique), Item Name, Price per item & Quantity. - This new item would be appended at the end of linked list. User can enter as many items they want to. But one by one. (Will be returned to Menu1 after adding single item) Option 2 (Make an Inventory Sale) - When user selects this, they will make a sale of inventory item. A full chart of Item Id, Item name would be displayed. Then user can enter the Item ID, and qty it wants to buy. For example: Item Id Item Name 11 Soap 34 Cooking Oil User enters 11, then program will prompt for quantity. (How many Soap want to sale). User will enter the value. Object Oriented Programming Mini Project 1 DCIS

Attachments:

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!