1. How would I read in from a file. But have the read in stop at a space rather
then a newline?
2. Make note I need to not skip 0's just spaces.
3. Also I then need to store the numbers as 5 separate int's.
file >> i; will read one integer (where file is an fstream and i is an int) and stop at the first non digit symbol. Put it in a loop and make it read values into an array.