-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodular_program.cpp
52 lines (49 loc) · 1.31 KB
/
modular_program.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#include <iostream>
#include <conio.h>
#include <stdio.h>
#include <fstream>
#include <cstring>
#include "Struct.h"
#include "Menu.h"
#include "Add.h"
#include "Viewing.h"
#include "Search.h"
#include "Exit.h"
using namespace std;
int main()
{
setlocale(LC_ALL, "rus");
fstream file;
bool f = true;
const char* doc = "BOOKCATALOG.dat";
int choise;
while (f) {
menu(); // вызов меню
cin >> choise;
switch (choise)
{
case 1: // Добавление записи
getchar();
cout << "Введите название книги: "; cin.getline(book.name, 50);
cout << "Введите автора книги: "; cin.getline(book.author, 50);
cout << "Введите количество страниц: "; cin >> book.numberOfPages;
cout << "Введите цену книги(руб): "; cin >> book.price;
cout << "Введите год выпуска: "; cin >> book.year;
add(doc); // Add.h
break;
case 2: // Просмотр записей
viewing(doc); // Prosmotr.h
break;
case 3: // Поиск записей
search(doc); // Poisk.h
break;
case 4: // Выход
f = exit();
break;
default:
cout << "Такой команды не существует, убедитесь в правильном написании" << endl;
break;
}
}
return 0;
}