#include #include /********************************************************************* * * * Grandmother's Trunk * * Programmer: Dan Bennett * * Other Programmers: The class * * * * CSCI 130 Afternoon * program 0, * * This program will simulate a game of grandmother's trunk. * It will ask the user for three inputs and 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 {"cat"}; string userItem2 = "dog"; userItem1 = "fred flintstone"; // tell the story cout << "I went to the trunk and I found" << endl; cout << '\t' << COMPUTER_ITEM_1 << endl; cout << '\t' << COMPUTER_ITEM_2 << endl; // cout << '\t' << "It Worked!!!" << endl; return 0; }