void main() { TDatList st; TMonom *pVal; int temp; cout << "Тестирование списка" << endl; for ( int i=0; i<5; i++ ) { pVal = new TMonom(i,10*i); st.InsLast(pVal); cout << "Положили в список значение " << pVal->GetCoeff() << "; " << pVal->GetIndex() << " Код " << st.GetRetCode() << endl; } // печать списка for ( st.Reset(); !st.IsListEnded(); st.GoNext() ) { pVal = (TMonom*)st.GetDatValue(); cout << "Взяли из списка значение " << pVal->GetCoeff() << "; " << pVal->GetIndex() << " Код " << st.GetRetCode() << endl; } st.DelList(); cout << "Нажмите любую клавишу" << endl; getch(); }