I have some arrays. I have to use parallel arrays, I cannot use vectors. I will check the items before they go into the arrays.
Input example:
23.6 Felix 45
double timeArray[size]
int playernumberArray[size]
string lastnameArray[size]
string = input;
cin >> input;
How do I split up the input, change the data type, and put it into the appropriate array?