Question: We're given this problem with these hints You are going to need to use multiple arrays. These arrays correspond to: The secret word that is

We're given this problem with these hints
- You are going to need to use multiple arrays. These arrays correspond to:
- The secret word that is being guessed.
- The "current board" of letters the user has found.
- The list of letters the user has already guessed.
- You'll need loops in multiple places:
- Continue asking the user for letters until solved or out of guesses
- Printing the current puzzle
- Checking if the letter exists in the puzzle
- Checking if the puzzle is solved
And I'm not sure where to start, any help would be appreciated. Write in C++
Instructions Your goal for this assignment is to create a playable Hangman game. You will need to create a secret word for the user to try and guess one letter at a time. First you need to ask the user to enter a letter. Then you'll check if that letter exists in your secret word. If it does exist, then you should tell the user and display the puzzle with the letter revealed. If the letter does not exist, then inform the user that the letter is not found. You will repeat this process until all the correct letters have been guessed or the user has entered 7 wrong letters Hopefully it is readily clear that you will need to use a loop to keep prompting the user to enter a letter. You will also need to use conditionals to check if the letter exists. You will need to use an array to store the secret letters (since a word is just a collection of letters). We'll also need arrays to keep track of the previously guessed letters (we don't want the player to guess wrong a second time) and the solved letters. Instructions Your goal for this assignment is to create a playable Hangman game. You will need to create a secret word for the user to try and guess one letter at a time. First you need to ask the user to enter a letter. Then you'll check if that letter exists in your secret word. If it does exist, then you should tell the user and display the puzzle with the letter revealed. If the letter does not exist, then inform the user that the letter is not found. You will repeat this process until all the correct letters have been guessed or the user has entered 7 wrong letters Hopefully it is readily clear that you will need to use a loop to keep prompting the user to enter a letter. You will also need to use conditionals to check if the letter exists. You will need to use an array to store the secret letters (since a word is just a collection of letters). We'll also need arrays to keep track of the previously guessed letters (we don't want the player to guess wrong a second time) and the solved letters
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
