-
Notifications
You must be signed in to change notification settings - Fork 55
/
main.cpp
158 lines (124 loc) · 3.7 KB
/
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
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
#include <iostream>
#include "Animal.hpp"
#include "Herpestidae.hpp"
#include "Ursidae.hpp"
#include "Cuidador.hpp"
#include "Alimentacao.hpp"
using namespace std;
int main()
{
Animal animal1;
animal1.family = "Ursidae";
animal1.nome ="Bobby";
animal1.IDADE = "13";
animal1.print();
double kgPeixeConsumidos01 = 0;
Animal animal2;
animal2.family = "Ursidae";
animal2.nome ="Jorge";
animal2.IDADE = "1";
animal2.print();
Animal animal3;
animal3.family = "Herpestidae";
animal3.nome ="Bonina";
animal3.IDADE = "7";
animal3.print();
Animal animal4;
animal4.family = "Ursidae";
animal4.nome ="Felício";
animal4.IDADE = "3";
animal4.print();
Ursidae e02;
int numAtendimentos02 = 0;
double comissao02 = 0;
e02.nome = "Tony";
e02.IDADE = 9;
e02.especie = "Urso Pardo";
e02.kgPeixePorDIA = 10.5;
e02.print();
Ursidae e03;
int numAtendimentos03 = 0;
double comissao03 = 0;
e03.nome = "Wanda";
e03.IDADE = 10;
e03.especie = "Urso Polar";
e03.kgPeixePorDIA = 7;
e03.print();
Herpestidae g01;
g01.family = "Herpestidae";
g01.nome ="Catita";
g01.IDADE = "2";
g01.species = "Suricato";
g01.print();
Herpestidae g02;
double bonificacao01 = 0;
g02.family = "Herpestidae";
g02.nome ="Carolina";
g02.IDADE = "2";
g02.species = "Suricato";
double kgPeixeConsumidos02 = 0;
double kgPeixeConsumidos03 = 0;
double kgPeixeConsumidos04 = 0;
double kgPeixeConsumidos05 = 0;
double kgRacaoConsumidos01 = 0;
double kgRacaoConsumidos02 = 0;
double kgRacaoConsumidos03 = 0;
Cuidador cuid01;
cuid01.NOME = "Ana Maria Rodrigues Lopes";
cuid01.cpf = "1234567799";
cuid01.Telefone = "(31) 99876-6923";
cuid01.BIRTH = "10/10/2000";
cuid01.salario = "R$ 3000";
Cuidador cuid2;
cuid2.NOME = "Fernanda Silva Santos";
cuid2.cpf = "9472567121";
cuid2.Telefone = "(31) 99123-8970";
cuid2.BIRTH = "08/02/1995";
cuid2.salario = "R$ 4000";
Alimentacao v01;
v01.porcao= 2;
v01.comida = "Peixes";
v01.descricao = "Bobby só quis comer 2 porções de peixes hoje";
v01.cuid = cuid01;
v01.nomeAnimal = "Bobby";
kgPeixeConsumidos01 = 5*2;
Alimentacao v02;
v02.porcao= 1;
v02.comida = "Ração especial";
v02.descricao = "Catita comeu direitinho";
v02.cuid = cuid2;
v02.nomeAnimal = "Catita";
kgRacaoConsumidos01 += g01.kgConsumidosDeRacao(v02.porcao);
Alimentacao v03;
v03.porcao= 3;
v03.comida = "Ração";
v03.descricao = "Carolina estava com um apetite e tanto";
v03.cuid = cuid2;
v03.nomeAnimal = "Carolina";
kgRacaoConsumidos02 += g02.kgConsumidosDeRacao(v03.porcao);
Alimentacao v04;
v04.porcao= 10;
v04.comida = "Peixes";
v04.descricao = "Tony comeu um pouco da comida do Bobby";
v04.cuid = cuid01;
v04.nomeAnimal = "Tony";
v02.porcao = 2;
v03.comida = "Ração";
kgPeixeConsumidos03 =
e02.calcula_PEIXES_CONSUMIDOS(10);
cout <<" \n \n--------------------------------\n\nRelatorio das alimentações \n" << endl;
v01.print();
cout << " Descricao: " << v01.descricao << endl << endl;
v02.print();
cout << " Descricao: " << v02.descricao << endl<<endl;
v03.print();
cout << " Descricao: " << v03.descricao << endl<< endl;
v04.print();
cout << " Descricao: " << v04.descricao << endl << "\n";
cout <<" \n \n--------------------------------\n\nRelatorio de kg de comida gastos \n" << endl;
cout << "Tipo de comida: " << "Ração" << endl;
cout << "Kg consumidos: " << kgRacaoConsumidos01+kgRacaoConsumidos02<<endl;
cout << "\nTipo de comida: " << "Peixe" << endl;
cout << "Kg consumidos: " << kgPeixeConsumidos01+kgPeixeConsumidos03<<endl;
return 0;
}