Question: How would I go about creating a text-based adventure maze game in C++ using the criteria listed below? During your adventure game, you must get
How would I go about creating a text-based adventure maze game in C++ using the criteria listed below?



During your adventure game, you must get at least 5 user inputs. Create variables to store them. There must be at least two paths, with each has a depth of 3 (an if with a nested if that has a nested if) to complete the adventure, and there needs to be at least 2 options with each decision. Example below: . There must be an element of chance that would change a user's chosen path somewhere in the game. Implementation requirements: There must be an empty line separating each navigation, in both your program and the output. There must be two paths with 3 nested if statements You must use at least 3 different data types for your variables from these options: short, int, long, float, double, char, bool. You must use at least 2 different arithmetic operators from these options: +, -, ,/,% You must use at least 2 different relational operators from these options: ==, !=, , =. You can use if/else statements and/or switch statements You need to use the rand() function to add an element of chance *Note: There is no error handling needed in program code part, meaning that you can assume all inputs are good. However, you do need to think about this in design level. For example, what if the user entered 3 for the first input in the example run above? What if the user entered 3.6 for the second input in the example run above
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
