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