-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathOccupant.cpp
More file actions
61 lines (52 loc) · 1.24 KB
/
Occupant.cpp
File metadata and controls
61 lines (52 loc) · 1.24 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
#include <iostream>
using namespace std;
class Occupant{
public:
double probabilityOfMovement;
char type;
int age;
int exposedPeriod;
char gender;
Occupant() {
probabilityOfMovement = 0.0;
type = 'O';
age = 0;
gender = ' ';
}
Occupant(char ty) {
gender = ' ';
age = 0;
if (ty == 'H')
{
probabilityOfMovement = 0.1;
type = 'H';
}
else
if (ty == 'Z')
{
probabilityOfMovement = 0.075;
type = 'Z';
}else
if (ty == 'E')
{
probabilityOfMovement = 0.0;
type = 'E';
}
else
{
probabilityOfMovement = 0.0;
type = 'O';
}
}
};
/**int main(){
Occupant oc;
Human h;
Zombie z;
h.probabilityOfMovement = 0.7;
z.probabilityOfMovement = 0.4;
cout << oc.probabilityOfMovement<<endl;
cout << h.probabilityOfMovement<<endl;
cout << z.probabilityOfMovement<<endl;
return 0;
}**/