/* This program will tell a story 6 different ways. July 19, 2021 */ #include #include using namespace std; const string PHRASE_ONE = "I saw the big brown bear."; const string PHRASE_TWO = "The big brown bear saw me."; const string PHRASE_THREE = "Oh! What a frightening experience!"; int main() { cout << PHRASE_ONE << endl << PHRASE_TWO << endl << PHRASE_THREE << endl; cout << endl; cout << PHRASE_ONE << endl << PHRASE_THREE << endl << PHRASE_TWO << endl; cout << endl; return 0; }