dariagalich

Untitled

Dec 1st, 2019
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.59 KB | None | 0 0
  1. //-----------------------------------------------------------------------------
  2. void old_book(book beg)
  3. {
  4. sort_data(&beg);
  5. system("cls");
  6. if (!beg)
  7. {
  8. MessageBox(0, L"Список пуст", L"Уведомление",
  9. MB_ICONINFORMATION | MB_SETFOREGROUND);
  10. return;
  11. }
  12. cout << "+———————————————————+————————————————————+——————————————————+————————————————+——————————————————+———————————————+" << endl;
  13. cout << "| Автор | Название | Издательство | Жанр | Дата поступления | Стоимость |" << endl;
  14. cout << "+———————————————————+————————————————————+——————————————————+————————————————+——————————————————+———————————————+" << endl;
  15. for (int i = 0; i < 5; i++)
  16. print(*temp);
  17. system("pause");
  18. return;
  19. temp = temp->next;
  20.  
  21. cout <<"+———————————————————+————————————————————+——————————————————+————————————————+——————————————————+———————————————+"<<endl;
  22. cin.get();
  23.  
  24. }
Advertisement
Add Comment
Please, Sign In to add comment