dariagalich

Untitled

Dec 1st, 2019
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.43 KB | None | 0 0
  1. void searchautor(book* beg)
  2. {
  3. book* temp = beg;
  4. char fa[d_n];
  5. system("cls");
  6. if (!beg)
  7. {
  8. MessageBox(0, L"Список пуст", L"Уведомление", MB_ICONINFORMATION | MB_SETFOREGROUND);
  9. return;
  10. }
  11. cout << "Введите автора для поиска" << endl;
  12. cin >> fa;
  13. while (temp!=NULL)
  14. {
  15.  
  16.  
  17. if (fa == temp->inf.autor)
  18. {
  19. cout << "+———————————————————+————————————————————+——————————————————+————————————————+——————————————————+———————————————+" << endl;
  20. cout << "| Автор | Название | Издательство | Жанр | Дата поступления | Стоимость |" << endl;
  21. cout << "+———————————————————+————————————————————+——————————————————+————————————————+——————————————————+———————————————+" << endl;
  22. print(*temp);
  23. system("pause");
  24. return;
  25. }
  26.  
  27.  
  28. temp = temp->next;
  29. }
  30. cout << "Книги с таким автором не найдено" << endl;
  31. system("pause");
  32. }
Advertisement
Add Comment
Please, Sign In to add comment