class Employee{
double hours;
int salary;
int leaves;
public Employee(){
hours=37.5;
salary=50000;
leaves=15;
}
}
class Manager extends Employee{
int leaves;
int salary;
public Manager(){
leaves=18;
salary=70000;
}
}
class Secretary extends Employee{
int hours;
public Secretary(){
hours=40;
}
}
public class Main
{
public static void main(String[] args) {
Employee e;
Manager m;
Secretary s;
}
}
Comments
Leave a comment