This is for c++. I need a program that asks whether any members of your party are vegetarian, vegan, or gluten-free, then displays only the restaurants that you may take the group to.
This is for c++. I need a program that asks whether any members of your party are vegetarian, vegan, or gluten-free, then displays only the restaurants that you may take the group to.
Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
Related questions
Question
This is for c++. I need a

Transcribed Image Text:1- Restaurant Selector
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 Café-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 displays only
the restaurants that you may take the group to. Here is an example of the program's output:
Is anyone in your party a vegetarian? yes Enter
Is anyone in your party a vegan? no Enter
Is anyone in your party gluten-free? yes Enter
Here are your restaurant choices:
Main Street Pizza Company
Corner Cafe
The Chef's Kitchen
Here is another example of the program's output:
Is anyone in your party a vegetarian? yes Enter
Is anyone in your party a vegan? yes Enter
Is anyone in your party gluten-free? yes Enter
Here are your restaurant choices:
Corner Cafe
The Chef's Kitchen
Expert Solution

Algorithm
- Start
- Declare variables for vegetarian, vegan, and gluten-free.
- Prompt the user with the question "Is anyone in your party a vegetarian?" and read the input into the vegetarian variable.
- Prompt the user with the question "Is anyone in your party a vegan?" and read the input into the vegan variable.
- Prompt the user with the question "Is anyone in your party gluten-free?" and read the input into the gluten variable.
- Display the message "Here are your restaurant choices:".
- Check if no one has dietary restrictions by using an if statement with the condition (veg == "no" && vegan == "no" && gluten == "no"). If true, display "Joe's Gourmet Burgers".
- Check if vegetarian and gluten-free by using an if statement with the condition (veg == "yes" && vegan == "no" && gluten == "yes"). If true, display "Main Street Pizza Company", "Corner Cafe", and "The Chef's Kitchen".
- Check if vegetarian, vegan, and gluten-free by using an if statement with the condition (veg == "yes" && vegan == "yes" && gluten == "yes"). If true, display "Corner Cafe" and "The Chef's Kitchen".
- Check if vegetarian only by using an if statement with the condition (veg == "yes" && vegan == "no" && gluten == "no"). If true, display "Corner Cafe", "Mama's Fine Italian", and "The Chef's Kitchen".
- End the program
Step by step
Solved in 4 steps with 3 images

Knowledge Booster
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.Recommended textbooks for you

Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education

Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON

Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON

Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education

Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON

Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON

C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON

Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning

Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education