import java.io.*; class MEmployee { public static void main(String[] argv) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); Employee e = Employee.readIn(br); while (e != null) { System.out.print("Please type in the hours worked : "); int hours = Integer.parseInt(br.readLine()); System.out.println("Employee " + e.getName() + " has worked " + hours + " hours and earned " + e.calcPay(hours) + " dollars"); e = Employee.readIn(br); } } } // end MEmployee