void main(void){ OrdIntList list; // the ordered list int tempint; // temporary storage list.Add(5); list.Add(2); list.Add(9); list.PrintList(); tempint = 99; cout << endl << tempint << " is "; if (!list.Contains(tempint)) { cout << "not "; } cout << "in the list."; tempint = 9; cout << endl << tempint << " is "; if (!list.Contains(tempint)) { cout << "not "; } cout << "in the list."; }