Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //-----------------------------------------------------------------------------
- void old_book(book beg)
- {
- sort_data(&beg);
- system("cls");
- if (!beg)
- {
- MessageBox(0, L"Список пуст", L"Уведомление",
- MB_ICONINFORMATION | MB_SETFOREGROUND);
- return;
- }
- cout << "+———————————————————+————————————————————+——————————————————+————————————————+——————————————————+———————————————+" << endl;
- cout << "| Автор | Название | Издательство | Жанр | Дата поступления | Стоимость |" << endl;
- cout << "+———————————————————+————————————————————+——————————————————+————————————————+——————————————————+———————————————+" << endl;
- for (int i = 0; i < 5; i++)
- print(*temp);
- system("pause");
- return;
- temp = temp->next;
- cout <<"+———————————————————+————————————————————+——————————————————+————————————————+——————————————————+———————————————+"<<endl;
- cin.get();
- }
Advertisement
Add Comment
Please, Sign In to add comment