package untitled3; // In main import javax.swing.*; public class main { public static void main(String[] args) { // Create Employee array employee[] a=new employee[100]; int i=0, count=0; System.out.println("How many employees would you like to input?"); i=SavitchIn.readLineInt(); while(i>count) { System.out.println("Enter employee's age"); int age=SavitchIn.readLineInt(); System.out.println("Enter employee's name"); String name=SavitchIn.readLine(); System.out.println("Enter employee's salary"); double salary=SavitchIn.readLineDouble(); System.out.println("Enter employee's SSN"); String SSN=SavitchIn.readLine(); a[count]=new employee(age,name,salary,SSN); count++; } String answer; }//end of main }//end of ExceptionApp