// Kathleen E. Williams // Exam 3 // Problem 2 // Statements to search by ID and give Account object and balance list::iterator i = find(accountList.begin(), accountList.end(), ID); if (i == v.end()) cout << "Not Found:"; else cout << "Acount ID: " << ID << " Balance: " << *--i.getBalance() << endl; cout << endl;