#include #include using namespace std; // file: page2.cpp // using a parameter in a function // read input // simulate airport paging void Page(string person) { cout << endl; cout << "Paging " << person << endl; cout << "Paging " << person << endl; cout << person << ", please call the operator from the slimy " << "courtesy telephone." << endl; } int main() { string who; cout << "Who are you gonna page?" << endl; cin >> who; Page(who); return 0; } /* prompgt> page2 Who are you gonna page? GhostBusters Paging GhostBusters Paging GhostBusters GhostBusters, please call the operator from the slimy courtesy telephone. */