The first number is the number of employees. After that the numbers in the first column are the employee ID's, second column is hourly rate, and the third column is hours worked. I'm fairly confused on how I am suppose to store these into three parallel arrays and any help would be appreciated.
Three parallel arrays... as in 3 different arrays with the data in the same place for each array, or a single 3-D array? The first case is rather simple. Are you allowed to use the STL (i.e. vector) or are you limited to C-style arrays?