Question: Continuing from started code below create C++ string named constants for 7 boards of hangman and have the boards print out using the named constants.

Continuing from started code below create C++ string named constants for 7 boards of hangman and have the boards print out using the named constants. Prompt the user for the word to guess as a string in all uppercase then prompt for a latter guess as a char as an uppercase letter. Program will indicate whether the letter is Found or Not Found.

Continue from below code:

#include

using namespace std;

using namespace std;

int main() { // Creating a string which will store the symbols in exact order to form the hangman string BOARD7=" -------| | | O | -|- | / \\ | | ------ ";

// printing the hangman cout

return 0; }

Program output should look like:

Continuing from started code below create C++ string named constants for 7

. I hangman 2 picture 0 I 0 -1- Enter word to guess: COMPUTERS Enter letter to guess: J Jis NOT FOUND in the word COMPUTERS . I hangman 2 picture 0 I 0 -1- Enter word to guess: COMPUTERS Enter letter to guess: J Jis NOT FOUND in the word COMPUTERS

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!