I have a column of data (mydata.txt) as below (27 rows):
1
2
3
.
.
.
25
26
27
and I want to read it from a text file and then put it in a 3D array of B with the size of 3x3x3. Can any one help me about it? Here is my codes which I just used for reading the data. I do not know that how I should put the read data into a 3D array of 3x3x3.
#include <fstream>
#include <iostream>
int main()
{
int input1;
double input2;
//Open file
std::ifstream inFile;
inFile.open("mydata.txt"); //or whatever the file name is
while(!inFile.eof())
{
//Get input
inFile >> input1 >> input2;
//Print input
std::cout << input1 << " " << input2 << " ";
}
//Close file
inFile.close();
system ("PAUSE");
return 0;
}