Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

C++ A minivan has two sliding doors. Each door can be opened by either a dashboard switch, its inside handle, or its outside handle. If

C++

A minivan has two sliding doors. Each door can be opened by either a dashboard switch, its inside handle, or its outside handle. If the child lock switch is activated, no doors will open independent of what switches are activated. In order for the sliding doors to open, the gear shift must be in park, and the master unlock switch must be activated.

Your task is to simulate a portion of the control software for the vehicle. The input is a sequence of values for the switches and the gear shift, in the following order:

  • Dashboard switches for left and right sliding door, child lock, and master unlock (0 for off or 1 for activated)
  • Inside and outside handles on the left and right sliding doors (0 or 1)
  • The gear shift setting (one of P N D 1 2 3 R).

IMPLEMENTATION:

Print left door opens and/or right door opens as appropriate. If neither door opens, print both doors stay closed. If both doors open, print "both doors open".

Allow user the choice to continue (select another set of options) as long as he/she wishes.

SAMPLE INPUT:

0 0 0 1 0 1 0 0 P

Dashboard switch on the left door

Dashboard switch on the right door

Child lock

Master unlock

Inside left door latch

Outside left door latch

Inside right door latch

Outside right door latch

Gearshift (P N D 1 2 3 R)

SAMPLE RUN:

Please enter DL DR CL MU IL OL IR OR Gearshift DL = dashboard switch for left door (0 or 1) DR = dashboard switch for right door (0 or 1) CL = child lock (0 or 1) MU = master unlock (0 or 1) IL = inside left door latch (0 or 1) OL = outside left door latch (0 or 1) IR = inside right door latch (0 or 1) OR = outside right door latch (0 or 1) Gearshift (P N D 1 2 3 R) 1 1 1 1 1 1 1 1 D Both doors stay closed.

Try another simulation? Type 1 for yes and 2 for no=>1

Please enter DL DR CL MU IL OL IR OR Gearshift DL = dashboard switch for left door (0 or 1) DR = dashboard switch for right door (0 or 1) CL = child lock (0 or 1) MU = master unlock (0 or 1) IL = inside left door latch (0 or 1) OL = outside left door latch (0 or 1) IR = inside right door latch (0 or 1) OR = outside right door latch (0 or 1) Gearshift (P N D 1 2 3 R) 1 1 1 1 1 1 1 1 P

Both doors stay closed.

Try another simulation? Type 1 for yes and 2 for no=>1

Please enter DL DR CL MU IL OL IR OR Gearshift DL = dashboard switch for left door (0 or 1) DR = dashboard switch for right door (0 or 1) CL = child lock (0 or 1) MU = master unlock (0 or 1) IL = inside left door latch (0 or 1) OL = outside left door latch (0 or 1) IR = inside right door latch (0 or 1) OR = outside right door latch (0 or 1) Gearshift (P N D 1 2 3 R) 0 0 0 1 0 1 0 0 P Left door opens Try another simulation? Type 1 for yes and 2 for no=>2

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Intelligent Information And Database Systems Asian Conference Aciids 2012 Kaohsiung Taiwan March 2012 Proceedings Part 2 Lnai 7197

Authors: Jeng-Shyang Pan ,Shyi-Ming Chen ,Ngoc-Thanh Nguyen

2012th Edition

3642284892, 978-3642284892

More Books

Students also viewed these Databases questions