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
| #include "stdafx.h"
#include <conio.h>
#include <iostream>
#include <string>
using namespace std;
static bool Drink_Milk = true;
class Animals
{
protected:
int Size;
int Limbs; //кол-во конечностей
string Whence; //откуда
string Int_Color; //основной цвет/окраска
bool Flies;
static Animals *first;
Animals *next;
public:
Animals::Animals(int size, int limbs, string whence, string int_color, bool flies)
{
Size = size;
Limbs = limbs;
Whence = whence;
Int_Color = int_color;
Flies = flies;
cout << "constr" << endl<<endl;
Animals *cur;
if (first == NULL)
{
first =this;
first->next = NULL;
}
else
{
cur = first;
while (cur->next)
cur = cur->next;
cur->next = this;
this->next = NULL;
}
}
Animals::~Animals()
{
cout << "Destr working" << endl<<endl;
if (first == NULL)
{
cout << "List is empty" << endl;
}
else
{
Animals *cur;
cur = first;
while (cur->next)
{
cur = cur->next;
}
Animals *cur1;
cur1 = cur->next;
cur->next = NULL;
delete cur1;
}
}
virtual void Show()
{
cout << "Size; " << Animals::Size << endl;
cout << "number of limbs; " << Animals::Limbs << endl;
cout << "Where are he now? " << Animals::Whence << endl;
cout << "Int color; " << Animals::Int_Color << endl;
cout << "This animal flies? ";
if (Animals::Flies == 1)
{
cout << "Yes" << endl;
}
else
{
cout << "No" << endl;
}
cout << endl << endl;
};
static void Show1()
{
if (first == NULL)
{
cout << "List is empty, its static void Show"<<endl;
}
else
{
Animals *cur;
Show();
}
}
};
class Birds : public Animals {
public:
bool Fly_away_in_winter;
Birds(int size, int limbs, string whence, string int_color, bool flies, bool fly_away_in_winter)
: Animals(size, limbs, whence, int_color, flies)
{
Fly_away_in_winter = fly_away_in_winter;
}
void Show()
{
cout << "Size; " << Animals::Size << endl;
cout << "number of limbs; " << Animals::Limbs << endl;
cout << "Where are he now? " << Animals::Whence << endl;
cout << "Int color; " << Animals::Int_Color << endl;
cout << "This animal flies? ";
if (Animals::Flies == 1)
{
cout << "Yes" << endl;
}
else
{
cout << "No" << endl;
}
cout << "This bird fly away in winter? ";
if (Birds::Fly_away_in_winter == 1)
{
cout << "Yes" << endl;
}
else
{
cout << "No" << endl;
}
cout << endl << endl;
};
};
class Mammals : public Animals {
public:
static bool Drink_Milk;
Mammals(int size, int limbs, string whence, string int_color, bool flies)
: Animals(size, limbs, whence, int_color, flies)
{
}
void Show()
{
cout << "Size; " << Animals::Size << endl;
cout << "number of limbs; " << Animals::Limbs << endl;
cout << "Where are he now? " << Animals::Whence << endl;
cout << "Int color; " << Animals::Int_Color << endl;
cout << "This animal flies? ";
if (Animals::Flies == 1)
{
cout << "Yes" << endl;
}
else
{
cout << "No" << endl;
}
cout << "Drink Milk? Yes" << endl << endl;
}
};
class Artiodactyls : public Mammals { //парнокопытные
public:
Artiodactyls(int size, int limbs, string whence, string int_color, bool flies)
: Mammals(size, limbs, whence, int_color, flies)
{
}
void Show()
{
cout << "Size; " << Animals::Size << endl;
cout << "number of limbs; " << Animals::Limbs << endl;
cout << "Where are he now? " << Animals::Whence << endl;
cout << "Int color; " << Animals::Int_Color << endl;
cout << "This animal flies? ";
if (Animals::Flies == 1)
{
cout << "Yes" << endl;
}
else
{
cout << "No" << endl;
}
cout << "Drink Milk? Yes" << endl << endl;
}
};
int main()
{
Animals *Ringo=new Animals(2, 4, "Africa", "gray", false);
cout << "Ringo" << endl;
Ringo->Show();
delete Ringo;
Birds Eagle(1, 4, "Russia, Spain, Romania", "brown", true, true);
cout << "Eagle" << endl;
Eagle.Show();
Mammals Bear(2, 4, "Russia, Europe", "Brown", false);
cout << "Bear" << endl;
Bear.Show();
//Mammals Brown_bear(2 , 4, "Russia, Europe", "brown", false);
Artiodactyls Giraffe(6, 4, "Africa", "Yellow", false);
cout << "Giraffe" << endl;
Giraffe.Show();
system("pause");
return 0;
} |