Skip to content

Commit c123582

Browse files
authored
become children of light
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)
1 parent 68abea4 commit c123582

1 file changed

Lines changed: 49 additions & 0 deletions

File tree

task11/task1105/Solution.java

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
package com.javarush.task.task11.task1105;
2+
3+
//While you have the light, believe in the light, that you may become children of light."
4+
//Jesus said these things, and he departed and hid himself from them. (John 12:36)
5+
6+
/*
7+
ИТ-компания
8+
*/
9+
10+
public class Solution {
11+
public static void main(String[] args) {
12+
}
13+
14+
public class Worker {
15+
16+
}
17+
18+
public class Clerk extends Worker {
19+
20+
}
21+
22+
public class IT extends Worker {
23+
24+
}
25+
26+
public class Programmer extends IT {
27+
28+
}
29+
30+
public class ProjectManager extends IT {
31+
32+
}
33+
34+
public class CTO extends IT {
35+
36+
}
37+
38+
public class OfficeManager extends Clerk {
39+
40+
}
41+
42+
public class HR extends Clerk {
43+
44+
}
45+
46+
public class Cleaner extends Clerk {
47+
48+
}
49+
}

0 commit comments

Comments
 (0)