#include #include "CPstring.h" void Million(string fname, string lname) { cout << fname << " " << lname; cout << ", you've won TEN million dollars!" << endl; } void Ticket(string first) { cout << first << ", that's what you will hear if you" << endl; cout << "have the winning ticket. " << endl; } void Car(string fname, string hometown, string wheels) { cout << "Imagine, " << fname << ", you could be cruising in a" << endl; cout << wheels << " down Main Street in " << hometown << "." << endl; } void SweepsMen(string first, string last, string city) { Million(first, last); Ticket(first); Car(first, city, "Humvee"); } void SweepsWomen(string first, string last, string city) { Million(first, last); Ticket(first); Car(first, city, "Porsche"); } int main() { SweepsMen("Jonathan", "David", "Lorton"); cout << endl; SweepsWomen("Angela", "Shue", "Plano"); return 0; }