// see program oldmac2.cpp for function Verse and #includes int main() { string animal; string noise; cout << "Enter the name of an animal: "; cin >> animal; cout << "Enter noise that a " << animal << " makes: "; cin >> noise; cout << endl; Verse(animal,noise); return 0; }