// Fig. 8.13: EmployeeTest.java //static member demonstration. public class EmployeeTest { public static void main ( String [ ] args ) { //show that count is 0 before creating Employees System . out . printf ( "Empployees before instantiation: %d \n " , Employee. getCount ( ) ) ; //create two Employees; count should be 2 Employee e1 = new Employee ( "Susan" , "Baker" ) ; Employee e2 = new Employee ( "Bob" , "Blue" ) ; //show that coount is 2 after creating two Employee...