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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
| /*
Завдання: 3. Сформувати чергу, яка містить список страховок, оформлюваних страховим агентством.
Для кожної страховки вказати:
ПІБ застрахованого,
тип страховки,
сума страхування,
строк,
дату оформлення.
Мати можливість доповнити чергу елементом, видалити з черги елемент.
*/
#include "stdafx.h"
#include <iostream>
#include <iomanip>
using namespace std;
struct insurance
{
unsigned int number; //Номер
char name[10]; //Название
char type[10]; //Тип страховки
float sum; //Сумма страховки
int life; //Срок страховки
unsigned int //Дата оформления
day,
month,
year;
struct insurance *next, *start; //Указатель на следующий элемент
};
insurance *create(int number, char name[], char type[], float sum, int life, int day, int month, int year)
{
insurance *s = new insurance;
s->number = 0;
strcpy_s(s->name, 10, name);
strcpy_s(s->type, 10, type);
s->sum = sum;
s->life = life;
s->day = day;
s->month = month;
s->year = year;
s->next = NULL;
return s;
}
void add(int number, char name[], char type[], float sum, int life, int day, int month, int year, insurance **top)
{
insurance *old = new insurance;
for(;;)
if ((*top)->next == NULL) //Поиск сободной нулевой структуры
{
(*top) = (*top)->next;
insurance *pv = new insurance; //Выделяем память
(*top) = pv;
pv->number = number; //Присвоения:
strcpy_s(pv->name, 10, name);
strcpy_s(pv->type, 10, type);
pv->sum = sum;
pv->life = life;
pv->day = day;
pv->month = month;
pv->year = year;
(*top)->next = NULL;
//(*top) = pv;
return;
}
else (*top) = (*top)->next; //Переключаемся на следующую структуру
}
void out(insurance **top) //Отображение всех элементов
{
insurance *old = *top;
while (*top)
{
//if ((*top)->number)
{
cout
<<setw(2)<<(*top)->number
<<setw(10)<<(*top)->name
<<setw(14)<<(*top)->type
<<setw(15)<<(*top)->sum
<<setw(10)<<(*top)->life
<<setw(16)<<(*top)->day<<"/"
<<(*top)->month<<"/"
<<(*top)->year
<<endl;
}
(*top) = (*top)->next; //Передвигаемся вперед пока существует структура
};
(*top) = old; //Возврат в начало для отображения во второй раз
}
void out(insurance **top, int number) //Отображение одного элемента
{
insurance *old = *top;
while (*top)
{
if ((*top)->number == number)
{
cout
<<"\nНомер: "<<(*top)->number
<<"\nФИО: "<<(*top)->name
<<"\nТип страховки: "<<(*top)->type
<<"\nСумма страховки: "<<(*top)->sum
<<"\nСрок страховки: "<<(*top)->life
<<"\nДата страховки: "<<(*top)->day<<"/"
<<(*top)->month<<"/"
<<(*top)->year
<<endl;
(*top) = old; //Возврат в начало для отображения во второй раз
return;
}
(*top) = (*top)->next;
};
cout<<"К сожалению, элемент не найден!\nПопробуйте еще раз.\n";
}
/*
void del(insurance **top)
{
while (*top)
{
insurance *pv = *top;
(*top) = (*top)->p;
delete pv;
}
}
void del(insurance **top, int number)
{
insurance *old = *top;
while (*top)
{
insurance *pv = *top;
if ((*top)->number == number)
{
(*top)->number = 0;
(*top) = old; //Возврат в начало для отображения во второй раз
return;
}
(*top) = (*top)->p;
};
cout<<"К сожалению, элемент не найден!\nПопробуйте еще раз.\n";
}*/
int menu ()
{
char ch;
do
{
cout<<"Программа предназначена для учёта водителей автотранспортного предприятия.\n\n";
cout<<"Пожалуйста, вводите данные на латинице!!!\n\n";
cout<<"Выберие действие:\n"
<<"\"E\" Ввод данных;\n"
<<"\"V\" Вывод одного элемента;\n"
<<"\"W\" Просмотр стека;\n"
<<"\"R\" Удалить элемент;\n"
<<"\"D\" Удаление стека;\n"
<<"\"Q\" Выход;\n\n";
cout<<"Сделайте выбор: "; cin>>ch;
if (!strchr ("evwdrq", tolower(ch)))
{
cout<<"\nВыбор сделан НЕ ВЕРНО!!!\n";
system ("PAUSE");
system ("cls");
}
} while (!strchr ("evwdrq", tolower(ch)));
return tolower (ch);
}
int main()
{
system ("cls");
setlocale (0, "Rus");
char choice;
unsigned int number = 0;
char name[10] = "Name";
char type[10] = "Full";
double sum = 0;
int life = 0;
unsigned int day = 0, month = 0, year = 0;
insurance *top;
top = create (number, name, type, sum, life, day, month, year);
for (;;)
{
system ("CLS");
choice = menu();
switch (choice)
{
case 'e':
{
number ++;
cout<<"Введите ФИО:\t\t\t\t"; cin>>name;
cout<<"Введите тип страховки:\t\t\t"; cin>>type;
cout<<"Введите сумму страховки:\t\t"; cin>>sum;
cout<<"Введите строк страховки:\t\t"; cin>>life;
cout<<"Введите день страхования:\t\t"; cin>>day;
cout<<"Введите месяц страхования:\t\t"; cin>>month;
cout<<"Введите год страхования:\t\t"; cin>>year;
add(number, name, type, sum, life, day, month, year, &top);
cout<<"Ввод данных успешно закончен!\n";
cout<<"Элементу присвоен номер: "<<number<<endl;
system ("PAUSE");
}
break;
case 'v':
{
int num;
cout<<"Введите номер элемента: ";
cin>>num;
out(&top, num);
system ("PAUSE");
}
break;
case 'w':
{
cout<<"№ "<<"Название:\t"<<"Тип страховки:\t"<<"Сумма:\t"<<"Длительность:\t"<<"Дата рождения:\n";
out(&top);
system ("PAUSE");
}
break;/*
case 'r':
{
int num;
cout<<"Введите номер элемента: ";
cin>>num;
del(&top, num);
cout<<"Элемент успешно удален!\n";
system ("PAUSE");
}
break;
case 'd':
{
del(&top);
cout<<"Стек очищен!\n";
number = 0;
system ("PAUSE");
}
break;*/
case 'q': cout<<"\nСпасибо за использование программы!\n";
//del(&top);
system ("PAUSE");
return 0;
}
}
system("pause");
return 0;
} |