-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathprogram.cc
More file actions
84 lines (52 loc) · 1.83 KB
/
program.cc
File metadata and controls
84 lines (52 loc) · 1.83 KB
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
/**
* @mainpage Disseny modular: Experiments genètics en un laboratori.
S'ofereix un menú d'opcions per gestionar les classes que formen part de l'experiment genètic. S'introdueixen les classes <em>Especie</em> i <em>Poblacio</em>.
*/
/** @file main.cc
@brief Programa principal de la pràctica <em><b>Experiments genètics en un laboratori</b></em>.
*/
#include "Especie.hh"
#include "Poblacio.hh"
#ifndef NO_DIAGRAM
#include <iostream>
#include <string>
using namespace std;
#endif
/** @brief Programa principal de la pràctica <em>Experiments genètics en un laboratori</em>.
*/
int main(){
Especie esp;
esp.establir_genetica();
Poblacio poble;
poble.llegir_inicials(esp);
string accio;
while (cin >> accio and accio != "acabar"){
if (accio == "anadir_individuo"){
poble.llegir(esp);
}
else if (accio == "reproduccion_sexual"){
string mare, pare, fill;
cin >> mare >> pare >> fill;
poble.reproduir(pare, mare, fill, esp);
}
else if (accio == "escribir_arbol_genealogico"){
string nom;
cin >> nom;
poble.escriure_arbre_genealogic(nom);
}
else if (accio == "completar_arbol_genealogico"){
poble.completar_arbre();
}
else if (accio == "escribir_poblacion"){
poble.escriure_poblacio();
}
else if (accio == "escribir_genotipo"){
string nom;
cin >> nom;
cout << "escribir_genotipo " << nom << endl;
if (poble.existeix_individu(nom)) poble.consultar_individu(nom).escriure_genotip();
else cout << " error" << endl;
}
}
cout << "acabar" << endl;
}