/* Dan Bennett September 2015 This program prompts a user for their initials and then prints the initials back out. Algorithm: Prompt the user for the first initial Read in the first initial Prompt for the second initial Read the second initial Prompt for the third initial Read the third initial Print some blank lines Print the monogram */ #include using namespace std; int main() { char firstInitial, middleInitial, lastInitial; // ask the user for their first initial. cout << "Enter your First Initial => "; cin >> firstInitial; cout << endl; // ask the user for their middle initial. cout << "Enter your Middle Initial => "; cin >> middleInitial; cout << endl; // ask the user for their last initial. cout << "Enter your Last Initial => "; cin >> lastInitial; cout << endl; // print some blank lines cout << endl << endl << endl; // print the monogram cout << "Your initials are " << firstInitial << middleInitial << lastInitial << endl; // print anothr blank line cout << endl; return 0; }