package company;
import java.util.Date;
public class EmployeeTest
{
public static void main(String[] args)
{
Employee[] staff = new Employee[3];
staff[0] = new Employee("Charlie Chaplin",
34000,
new Date(78, 7, 9));
staff[1] = new Employee("Florence Nightingale",
100,
new Date(71, 4, 23));
staff[2] = new Employee("Mother Theresa",
0,
new Date(89, 3, 5));
for (int i = 0; i < staff.length; i++)
staff[i].raiseSalary(5); // by 5 percent
for (int i = 0; i < staff.length; i++)
staff[i].print();
}
}
|