Hey guys. I'm just trying out something with the fstream library. In the next code, I'm trying to read from the beginning of the array (num1) and from the end of the array (num2) the file I have as an "entry" called "entrada.txt", which has the numbers 1 up to 12. I want the program to show me in the first cout inside the while loop the first 6 numbers, from 1 to 6, and in the 2nd cout, numbers from 12 to 7. This is what i have so far.
#include <iostream>
#include <fstream>
using namespace std;
int main() {
const int CAPACIDAD = 100;
int array[CAPACIDAD];
int num1, num2, pos = 0;
ifstream Entrada;
Entrada.open("entrada.txt");
Entrada >> num1 >> num2;
while(!Entrada.eof())
{
array[pos] = num1;
cout << num1;
array[CAPACIDAD - pos - 1] = num2;
cout << "\t" << num2 << endl;
pos++;
Entrada >> num1 >> num2;
}
cin.ignore();
return 0;
}
When I run the program, all I get is this:
1 2
3 4
5 6
7 8
9 10
It doesn't even get to 12.
Do you know whats the problem. If you have any questions ask me =)... thanks ;)