-
Notifications
You must be signed in to change notification settings - Fork 13
/
GameApp.java
64 lines (46 loc) · 1021 Bytes
/
GameApp.java
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
package lessons.oop.basics.statics;
public class GameApp {
public static void main(String[] args)
{
WarGameApp.run();
}
}
class WarGameApp {
public static void run()
{
for (int i = 0; i < 10; ++i) {
Warrior warrior = new Warrior();
//..
Worker worker = new Worker();
worker.countIncrease();
}
//...
for (int i = 0; i < 20; ++i) {
Worker worker = new Worker();
//..
worker.countIncrease();
}
System.out.printf("Number of warrior: %d%n", Warrior.count);
System.out.printf("Number of worker: %d%n", Worker.count);
}
}
class Warrior {
public static int count;
public int power;
public int numberOfGuns;
public void countIncrease()
{
count++;
}
}
class Worker {
public static int count;
public int energy;
public void countIncrease()
{
count++;
}
}
class Animal {
//...
}