Write a C++ program to help a local restaurant manage customer orders. Present the menu to the user, allow them to make a selection from the Food menu. Once the user has made a selection prompt the user if they would like to view the menu again, use a do while for this. If they select yes show the menu again and prompt them to select another item in the menu, if they select no, terminate the loop and display their total cost of the food they selected. The menu should repeat and display as long as the user selects yes, the user should be able to select multiple food items from the menu. Suggested Food Menu: Pizza ………………….$3.00 Burger ……………….$5.00 Sandwich…………...$3.00 Suggested Beverage Menu: Soft Drink ……………$2.00 Water…………………..$0.00 Suggested Dessert Menu: Cookie………………….$1.00 Cake……………………..$3.00 Ice cream …………….$2.00