-
Notifications
You must be signed in to change notification settings - Fork 0
/
bablo2.cpp
51 lines (43 loc) · 1.02 KB
/
bablo2.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
#include <iostream>
using namespace std;
typedef struct People
{
int happy_year;
char name[12], city[18];
};
People* ReadStud(int &n)
{
cout << "Введите кол-во сотрудников: ";
cin >> n;
People* A;
A = new People[n];
cout << "Введите данные об сотрудниках!" << endl;
cout << "Имя - Место рождения - год рождения" << endl;
for (int i = 0; i < n; i++)
{
cin >> A[i].name;
cin >> A[i].city;
cin >> A[i].happy_year;
}
return A;
}
void InfoStud(People* A, int n)
{
int years;
cout << "Введите год, по которму будем фильтровать - ";
cin >> years;
cout << "Имя - год рождения"<<"\n";
for (int i = 0; i < n; i++)
{
if (A[i].happy_year == years) cout << A[i].name << " " << A[i].happy_year;
}
}
int main()
{
People *A;
int n;
A = ReadStud(n);
InfoStud(A,n);
delete[] A;
return 0;
}