-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEPS.java
More file actions
47 lines (47 loc) · 903 Bytes
/
EPS.java
File metadata and controls
47 lines (47 loc) · 903 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
public class EPS
{
class Employee
{
private String name;
private int hours;
public Employee(String name, int hours)
{
this.name = name;
this.hours = hours;
}
public double calculateSalary()
{
return hours * 20;
}
public int getHours()
{
return hours;
}
}
class Professor extends Employee
{
private String field;
public Professor(String name, int hours, String field)
{
super(name, hours);
this.field = field;
}
public double calculateSalary()
{
return getHours() * 30;
}
}
class Staff extends Employee
{
private int role;
public Staff(String name, int hours, int role)
{
super(name, hours);
this.role = role;
}
public double calculateSalary()
{
return hours * 20;
}
}
}