Use an employee data file called employees.txt Must contain at least 5 employee records. Each record stores the employee ID number (six digits) last name,first name,middle initial,gender(m or f), and date of birth string (mm/dd/yyyy) Write a java program called Employees.java that reads the data from the employees.txt file and outputs the number of male and female employees. Use the Scanner class for input
Need both the employees.txt file as well as the Employees.java file