π Background Information
A choose your own adventure story is a story, generally written from a second-person point of view, where the reader makes choices that determine the actions of the main character and the outcome of the plot. In this portfolio, you are going to create a (very) small choose your own adventure story.
π― Problem Statement
Create a choose your own adventure story that asks the user a series of questions and guides them through a short story. Your story must contain the elements outlined in the Acceptance Criteria.
β Acceptance Criteria
- Your story must ask the user at least two questions before concluding.
- For each question of the story, there should be at least two options to choose from.
- Your story should have at least one βrandomβ element which uses the
rand()
function in C++. - Your story should have at least one βloopingβ element which uses a
for
orwhile
loop in C++. - Your story must contain at least one piece of ASCII art.
π Dev Notes
- You must handle erroneous input from the user. Users of your program might enter an invalid option when prompted!
π₯οΈ Example Output
A choose your own adventure story might look something like this:
./adventure.out
!
.-.
__|=|__
(_/`-`\_)
//\___/\\
<>/ \<>
\|_._|/
<_I_>
|||
jgs /_|_\
You are standing in front of a cave. What do you do?
1) Enter the cave
2) Turn around and go home
3) Eat a sandwich
> 3
You begin to eat a ham sandwich. It is very tasty.
The smell of the sandwich attracts a troll! What do you do?
1) Run away
2) Fight the troll
3) Share your sandwich
> 3
You share your sandwich. That was very kind of you!
The troll offers you a delicious looking eclair in return.
Do you eat it?
1) Yes
2) No
> 1
It tastes a bit gamey, but otherwise not bad. Sharing is caring!
The end!
π Useful Links
N/A
π Works Cited
N/A