-
Notifications
You must be signed in to change notification settings - Fork 0
/
28.09.2023.cpp
108 lines (95 loc) · 2.6 KB
/
28.09.2023.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
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
#include <iostream>
#include <Windows.h>
using namespace std;
class Bird {
public:
string color;
float weight;
float height;
void PrintInfo() {
SetConsoleCP(1251);
SetConsoleOutputCP(1251);
cout << "Цвет: " << color << endl;
cout << "Вес: " << weight << " кг" << endl;
cout << "Высота: " << height << " м" << endl;
}
};
class HomeParrot : public Bird {
public:
string name;
bool isSpeak;
bool trained;
void Say(string word) {
SetConsoleCP(1251);
SetConsoleOutputCP(1251);
cout << word << endl;
}
void PrintInfo() {
SetConsoleCP(1251);
SetConsoleOutputCP(1251);
Bird::PrintInfo();
cout << "Имя: " << name << endl;
cout << "Говорит: " << (isSpeak ? "Да" : "Нет") << endl;
cout << "Приручен: " << (trained ? "Да" : "Нет") << endl;
}
};
class Ostrich : public Bird {
public:
Ostrich() {
SetConsoleCP(1251);
SetConsoleOutputCP(1251);
color = "Серый";
weight = 100.0f;
height = 2.5f;
}
void RunFast() {
SetConsoleCP(1251);
SetConsoleOutputCP(1251);
cout << "Страус умеет быстро бегать" << endl;
}
};
class Falcon : public Bird {
public:
Falcon() {
SetConsoleCP(1251);
SetConsoleOutputCP(1251);
color = "Коричневый";
weight = 1.0f;
height = 0.3f;
}
void Hunt() {
SetConsoleCP(1251);
SetConsoleOutputCP(1251);
cout << "Сокол способен охотиться" << endl;
}
};
class Condor : public Bird {
public:
Condor() {
SetConsoleCP(1251);
SetConsoleOutputCP(1251);
color = "Черный";
weight = 12.0f;
height = 3.0f;
}
void SoarHigh() {
SetConsoleCP(1251);
SetConsoleOutputCP(1251);
cout << "Кондор способен подниматься на высокие высоты и долго парить в воздухе" << endl;
}
};
class Pelican : public Bird {
public:
Pelican() {
SetConsoleCP(1251);
SetConsoleOutputCP(1251);
color = "Белый";
weight = 8.0f;
height = 1.5f;
}
void CatchFish() {
SetConsoleCP(1251);
SetConsoleOutputCP(1251);
cout << "Пеликаны умеют ловить рыбу с помощью своего клюва" << endl;
}
};