Test your Lecturer class by adding the following code to main
in InheritanceDemo.
Lecturer l1 = new Lecturer("Zachary");
Lecturer l1 = new Lecturer("Wilhelmina", 11017.00);
l1.writeOutput();
l2.writeOutput();
pause();
l1.setName("Zack");
l1.setStipend(10800.00);
l1.writeOutput();
pause();
System.out.printf("%s's stipend is $$4.2f.\n", g2.getName(), g2.getStipend());