#include /* Program 1: Madlibs Programmer Dan Bennett This program will simulate a simple Mad Lib game. Algorithm: Get the name of the company (Phrase) Get location of the company (word) Get the description of an animal (phrase) Get a verb (word) Print the story - fill in the blanks from the variable. */ using namespace std; int main() { string nameOfBusiness, // the name of the business verb, animal, junkInput, location; // Get the name of a company cout << "Enter the name of a business (phrase) => "; getline(cin, nameOfBusiness); cout << "The business is " << nameOfBusiness << endl; // Get location of the company (word) cout << "Enter the locaion of the business (word) => "; cin >> location; getline(cin, junkInput); // Get the description of an animal (phrase) cout << "Enter a type of animal (phrase) => "; getline(cin, animal); cout << "Enter a verb (word) => "; cin >> verb; cout << endl << endl; cout << "Mr. M. Palin" << endl; cout << "Owner, " << nameOfBusiness << endl; cotu << location << ", England" << endl; cout << endl; /* Dear Mr. Palin, I am writing this letter to complain about the service at your name of a business. I recently purchased a type of animal at this boutique. Once I returned home, I discovered that the type of animal was quite dead. When I tried to return it, the clerk said that it was not dead, merely present continuous verb. I assure you that this type of animal is not present continuous verb but is indeed quite dead. I appreciate your quick resolution of this matter. Sincerely, J. Cleese. */ return 0; }