#include #include #include //for class string (i.e., data type string) using namespace std; /* Output a verical sign, like the one on the Ed Sullivan Theater at Broadway & East 53rd Street. The variable c is of data type const char, because s is a string of const chars. */ int main() { const string s {"APOLLO"}; //Apollo Theater //cout << "+---+\n"; //top edge of the sign for (const auto c: s) { cout << "| " << c << " |\n"; } cout << "+---+\n"; //bottom edge of the sign return EXIT_SUCCESS; }