import java.util.Scanner; import java.io.File; import java.io.IOException; public class DoPayroll { public static void main(String args[]) throws IOException { Scanner diskScanner = new Scanner(new File("EmployeeInfo.txt")); for (int empNum = 1; empNum <= 3; empNum++) { payOneEmployee(diskScanner); } diskScanner.close(); } static void payOneEmployee(Scanner aScanner) { Employee anEmployee = new Employee(); anEmployee.setName(aScanner.nextLine()); anEmployee.setJobTitle(aScanner.nextLine()); anEmployee.cutCheck(aScanner.nextDouble()); aScanner.nextLine(); } }
what do you think about it?
New
Comments
- Popular
- New
- Old
You must be signed in to leave a comment
This page doesn't have any comments yet