You are now working for a department store, and your task is tocreate a point-of-sale application to allow customers to calculatethe total cost of their sale, including taxes.
Create a C++ program that does the following:
Calculates sales tax and total cost based on the type ofpurchased product using the following categories and taxpercentages:
Category 1 – Clothing: 6%
Category 2 – Beauty products: 7%
Category 3 – Grocery: 3%
Category 4 – Gardening: 6%
Category 5 – School supplies: 3%
Category 6 – Tobacco products: 10%
Creates an array to store the numbers users input and uses theswitch statement to calculate the sales tax and final cost based
OR
OR