-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathSolution.java
More file actions
49 lines (28 loc) · 745 Bytes
/
Solution.java
File metadata and controls
49 lines (28 loc) · 745 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
package com.javarush.task.task11.task1105;
//While you have the light, believe in the light, that you may become children of light."
//Jesus said these things, and he departed and hid himself from them. (John 12:36)
/*
ИТ-компания
*/
public class Solution {
public static void main(String[] args) {
}
public class Worker {
}
public class Clerk extends Worker {
}
public class IT extends Worker {
}
public class Programmer extends IT {
}
public class ProjectManager extends IT {
}
public class CTO extends IT {
}
public class OfficeManager extends Clerk {
}
public class HR extends Clerk {
}
public class Cleaner extends Clerk {
}
}