-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathBins.java
More file actions
53 lines (50 loc) · 1.03 KB
/
Bins.java
File metadata and controls
53 lines (50 loc) · 1.03 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
public class Bins {
int two = 0;
int three = 0;
int four = 0;
int five = 0;
int six = 0;
int seven = 0;
int eight = 0;
int nine = 0;
int ten = 0;
int eleven = 0;
int twelve = 0;
public void storeBin(int result) {
switch (result) {
case 2:
two++;
break;
case 3:
three++;
break;
case 4:
four++;
break;
case 5:
five++;
break;
case 6:
six++;
break;
case 7:
seven++;
break;
case 8:
eight++;
break;
case 9:
nine++;
break;
case 10:
ten++;
break;
case 11:
eleven++;
break;
default:
twelve++;
break;
}
}
}