Question: Write a C++ program that outputs the final hangman board to the screen, will look exactly like the example below. There are NO interaction yet,
Write a C++ program that outputs the final hangman board to the screen, will look exactly like the example below. There are NO interaction yet, strictly output.
- Program Comment Block is Required
- return 0; is required
- instruction line comments are required
Here is what the program output should look like:

What I have but isn't working. I don't understand how to make the errors go away so the program works:

//
// main.cpp
// Hangman.CPP
//
// Created by ____ on 1/31/21.
//
#include
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;
}
I 0 -1- 1 // 2 // main.cpp 3 // Hangman.CPP 4 // 5 // Created by on 1/31/21. 6 // 7 8 #include
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
