Write a program that will process a data set of information for the Chicago Blackhawks. The information in the file will be needed for later processing, so it will be stored in a set of arrays that will be displayed, sorted, and displayed.
For the assignment, declare four arrays, each of which will hold a maximum of 25 elements:
- one array of strings to hold the player names
- one array of integers to hold the number of goals scored for each of the players
- one array of integers to hold the number of assists for each of the players
- one array of integers to hold the plus/minus rating for each of the players
The four arrays will be parallel arrays. This means that the information for one player can be found in the same "spot" in each array. This also means that any time information is moved in one array the same move must be made to the other arrays in order to maintain data integrity.