#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 char, because s is a string of chars. int main() { string s {"COLBERT"}; //Stephen Colbert cout << "+---+\n"; //top edge of the sign for (auto c: s) { cout << "| " << c << " |\n"; } cout << "+---+\n"; //bottom edge of the sign return EXIT_SUCCESS; }