From 27a9034a334b5fd9263f84097d657a8c606018be Mon Sep 17 00:00:00 2001 From: Jesus Hilario Hernandez Date: Wed, 13 Mar 2019 04:43:32 -0500 Subject: [PATCH] modified --- .../Programming Challenges/28.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Chapter-4-Making-Decisions/Review Questions and Exercises/Programming Challenges/28.cpp b/Chapter-4-Making-Decisions/Review Questions and Exercises/Programming Challenges/28.cpp index eac03ea..2bffa0c 100644 --- a/Chapter-4-Making-Decisions/Review Questions and Exercises/Programming Challenges/28.cpp +++ b/Chapter-4-Making-Decisions/Review Questions and Exercises/Programming Challenges/28.cpp @@ -34,7 +34,15 @@ // Main Street Pizza Company // Corner Cafe // The Chef's Kitchen +// You have a group of friends coming to visit for your high school reunion, and you want to take them out to eat at a local restaurant. You aren’t sure if any of them have dietary restrictions, but your restaurant choices are as follows: +// Joe’s Gourmet Burgers—Vegetarian: No, Vegan: No, Gluten-Free: No +// Main Street Pizza Company—Vegetarian: Yes, Vegan: No, Gluten-Free: Yes +// Corner Cafe—Vegetarian: Yes, Vegan:Yes, Gluten-Free: Yes +// Mama’s Fine Italian—Vegetarian: Yes, Vegan: No, Gluten-Free: No +// The Chef’s Kitchen—Vegetarian: Yes, Vegan: Yes, Gluten-Free: Yes + +// Write a program that asks whether any members of your party are vegetarian, vegan, or gluten-free, then display only the restaurants that you may take the group to. #include using namespace std; int main()