#include #include /*********************************************************************** * Programmer Dan Bennett * * For CSCI 130, Morning Session * * * * I worked with all of the class. * * * * This code is a simulated version of Grandmother's Trunk. * * It will ask the user for three items then tell the story. * * * ************************************************************************/ using namespace std; const string COMPUTER_ITEM_1 = "bottle of wine"; const string COMPUTER_ITEM_2 {"ratty coat"}; int main() { string userItem1 {"rock"}; // tell the story cout << "In my trunk I found " << endl; cout << '\t' << userItem1 << endl; cout << '\t' << COMPUTER_ITEM_1 << endl; cout << '\t' << COMPUTER_ITEM_2 << endl; cout << "It Worked" << endl; return 0; }