int main(int argc, char* argv[])
{
  TQueue st;
  int temp;
  cout << "Тестирование программ поддержки структуры типа";
  cout << "очереди" << endl;
  for ( int i=0; i<35; i++ ) {
    st.Put(i);
    cout << "Положили значение " << i << " Код " << st.GetRetCode() << endl;
  }
  getch();
  int k;
  while ( !st.IsEmpty() ) {
    temp = st.Get();
    cout << "Взяли значение " << temp << " Код " << st.GetRetCode() << endl;
  }
  cout << "Нажмите любую клавишу" << endl;
  getch();
  return 0;
}
Хостинг от uCoz