/* InvRpt2.java CIS 111 David Klick October 8, 2007 This program displays the inventory report saved to file InvReport.txt. */ public class InvRpt2 extends CIS111App { public static void main(String[] args) { SequentialFile infile = new SequentialFile("InvReport.txt", FileMode.INPUT); while (!infile.eof()) println(infile.readLine()); infile.close(); } }