C++ Assignment 12
Snack Bar program and strings

Your assignment is to write a program that will function as a point-of-sale-system at a snack bar. The snack bar sells only five different items: a sandwich, chips, pickle, brownie, and soda. All items are subject to San Francisco sales tax of 8.25%. You should choose the sale prices of the products.

The program should repeatedly display the menu below until the sale is totaled. The program should keep a running total of the amount of the sale based on costs that you place in constants for each of the food items. The running total should be displayed somewhere on the screen each time the menu is displayed again. If the sale is canceled, clear your running total and display the menu again. When the sale is totaled, calculate the sales tax and print the final total due on the screen along with a "Thank You for Your Order" message and a random order number.

Program Requirements

Your finished program should