//------------// Introduction to Programming Using Java: An Object-Oriented Approach//	Arnow/Weiss//------------//------------// Chapter 8 / Section 8.2.2 / Page 268//	An incorrect version of a while loop.//------------ //------------// Notes//	- !!! This code contains compile-time errors. !!!//	- This class corresponds to a code fragment.//------------import java.io.*;class Chapter8_2_2_2 {	public static void main(String arg[]) throws IOException {		File file = new File("employees.dat");		FileInputStream	fis = new FileInputStream(file);		InputStreamReader isr = new InputStreamReader(fis);		BufferedReader br = new BufferedReader(isr);		Employee e;		while (e != null) {			e = Employee.readIn(br);			int hours = Integer.parseInt(br.readLine());			System.out.println("Employee " + e.getName() + 				" has earned " + e.calcPay(hours));		}	}}