Assignment #7 – Banquet Planner
You are organizing a banquet for you and your friends. You want to know which choice of food and beverage for each guest so you can plan the banquet. For each guest you will need to gather some information about their food/beverage preferences to determine what to serve for them. There are 8 guests in total. Finally, you want to output the total cost for the food and beverage and the average cost per guest. You will create a C++ program and a flowchart.
The program will prompt for the following information about each guest
name,
if they are vegetarian
If not, if they eat red meat
if they drink alcoholic beverage
if so, if they drink red wine
The program will provide process the following information
Which entrée to serve based on their food preferences
FOOD ITEMS COST PREFERENCE
Roasted Prime Rib $23.50 not Vegetarian (eats red meat)
Rotisserie Chicken $19.75 not Vegetarian (does not eat red meat)
Garden Pasta $13.25 Vegetarian
Which beverage to serve based on their drink preferences
FOOD ITEMS COST PREFERENCE
Red Wine $6.50 Alcoholic beverage, red wine
White Wine $6.00 Alcoholic beverage, white wine
Ice Tea $2.50 Non alcoholic beverage
Turn in as a single PDF file (IN THIS ORDER)
1 — Output (cut and pasted into a txt file in eclipse)
2 — Main.cpp - Source Code (PROPERLY DOCUMENTED) 3 — Flowchart for documenting your algorithm
Make sure it conforms to the style detailed in the lecture notes (including line numbers, comments and printed out directly from main.cpp)
Screen INPUT/OUTPUT - should be formatted as follows – (Class heading should be also displayed)
Your Class Header
Welcome to the Banquet Planner! Please input each guest’s information. Guest #1:
What is your guest’s name? Austin Vaday
Vegetarian (Y/N)? N
Does he/she like red meat (Y/N)? Y
Alcoholic beverage (Y/N)? Y
Does he/she like red wine (Y/N)? Y
Austin Vaday will be having Roasted Prime Rib with Red Wine for dinner!
Guest #2:
What is your guest’s name? Andrew Daniels
Vegetarian (Y/N)? Y
Alcoholic beverage (Y/N)? Y
Does he/she like red wine (Y/N)? N
Andrew Daniels will be having Garden Pasta with White Wine for dinner!
Guest #3:
What is your guest’s name? Amanda Kissenhugg
Vegetarian (Y/N)? N
Does he/she like red meat (Y/N)? N
Alcoholic beverage (Y/N)? N
Amanda Kissenhugg will be having Rotisserie Chicken with Ice Tea for dinner!
Guest #4:
What is your guest’s name? Erik Karlsson
Vegetarian (Y/N)? N
Does he/she like red meat (Y/N)? Y
Alcoholic beverage (Y/N)? Y
Does he/she like red wine (Y/N)? N
Erik Karlsson will be having Roasted Prime Rib with White Wine for dinner!
Guest #5:
What is your guest’s name? Paula Montoya
Vegetarian (Y/N)? N
Does he/she like red meat (Y/N)? Y
Alcoholic beverage (Y/N)? Y
Does he/she like red wine (Y/N)? Y
Paula Montoya will be having Roasted Prime Rib with Red Wine for dinner!
Guest #6:
What is your guest’s name? Jonathan Andrews
Vegetarian (Y/N)? Y
Alcoholic beverage (Y/N)? N
Jonathan Andrews will be having Garden Pasta with Ice Tea for dinner!
CS 340 Milestone One Guidelines and Rubric Overview: For this assignment, you will implement the fundamental operations of create, read, update,
Retail Transaction Programming Project Project Requirements: Develop a program to emulate a purchase transaction at a retail store. This
7COM1028 Secure Systems Programming Referral Coursework: Secure
Create a GUI program that:Accepts the following from a user:Item NameItem QuantityItem PriceAllows the user to create a file to store the sales receip
CS 340 Final Project Guidelines and Rubric Overview The final project will encompass developing a web service using a software stack and impleme