-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.cpp
39 lines (34 loc) · 1007 Bytes
/
main.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
#include<pattern.h>
int main() {
setlocale(LC_ALL, "Russian");
Cat cat;
Dog dog;
Cow cow;
FoodDispenser dispenser;
int choice;
cout << "Кого вы хотите покормить?" << endl;
cout << "1. Кошку" << endl;
cout << "2. Собаку" << endl;
cout << "3. Корову\n" << endl;
cin >> choice;
switch (choice) {
case 1:
cout << "\nКормим кошку:" << endl;
dispenser.feed(&cat);
cout << "Кошка сыта" << endl;
break;
case 2:
cout << "\nКормим собаку:" << endl;
dispenser.feed(&dog);
cout << "Собака сыта" << endl;
break;
case 3:
cout << "\nКормим корову:" << endl;
dispenser.feed(&cow);
cout << "Корова сыта" << endl;
break;
default:
cout << "Некорректный выбор." << endl;
}
return 0;
}