/* PayrollApp.java        Authors: Koffman & Wolz
 * Application class for testing class Payroll
 * Uses Payroll
 */
import psJava.KeyIn;

public class PayrollApp {

   public static void main(String[] args) {
     // Create a new Company object.
     Company comp =
          new Company(KeyIn.readInt("How many employees?"));
     // Read the payroll data.
     comp.readPayrollData();
     // Compute the total payroll.
     comp.computePayroll();
     // Display the company information
     System.out.println(comp.toString());
   }
}

