-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTown.c
More file actions
56 lines (43 loc) · 896 Bytes
/
Town.c
File metadata and controls
56 lines (43 loc) · 896 Bytes
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
#include<iostream>
#include<vector>
#include<math.h>
#include<Agent.h>
class Town {
private:
vector<People> numpeeps;
double BarCapacity;
boolean pecentTrue;
public:
void turn ();
static int goingToBar ();
static void getWinners ();
int askPercent ();
};
void turn () {
goingToBar();
askPercent();
getWinners();
}
static int goingToBar () {
int i,count;
for (i=0;i<numpeeps.max_size();i++)
if numpeeps[i].isGoingToBar() == 1
count++;
return count;
}
staic void getWinners() {
int j,countalt;
for (j=0;j<numpeeps;j++)
if numpeeps[j].isGoingToBar() == 0
countalt++;
if goingToBar() > countalt
cout << "Winner is the group not in the bar."
else
cout << "Winner is the group in the bar."
}
int[] askPercent {
int popper[1];
popper[0]=(goingToBar()/numpeeps.max_size())*100;
popper[1]=((numpeeps.max_size() - goingToBar())/*100;
return popper;
}