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:

. 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
Get step-by-step solutions from verified subject matter experts
