Albert store has three different products in their store such as Television, Refrigerator and Washing machine. Create a
Posted: Tue May 24, 2022 8:11 am
Albert store has three different products in their store such as Television, Refrigerator and Washing machine. Create a C++ class to process the basic details about the electronic products in the store, such as the name of the product, product code, product price and number of products in stock. Create another C++ class to support the store keeper to maintain the stock details in the store. Write a non member function to help the store keeper to find the products whose stock is less than 10. Input Format: The first line will contain the number of products n. Name of the product Product code Price stock in hand Output Format: Print the name and product code of the product whose available stock is less than 10 For example: Test Input Result 1 3 SSD RAM 1002 1001 Monitors 20000 1005 12 SSD 1002 10000 3 Monitors 1005 12000 9