I don't really know much about vectors. I know I need to have a #include<vector> at the top, but that's about it.
Do you have a sample of what you mean?
You don't mean like this?
1 2 3 4 5 6 7 8
vector<int> myArray(24); //24 is the amount of numbers in the file that I'm trying to read.
myArray[0] = 10;
myArray[1] = 9;
myArray[2] = -2346; /*These are the numbers, and for the sake of time I just wrote out the
first 3 numbers. */
std::reverse(myArray.begin(), myArray.end());