我想做的是,现在我知道数字“10”的索引,我想将它读入ary。
#include <iostream>
#include <fstream>
using namespace std;
int ary[1];
ifstream inData;
inData.open("num.txt");
for (int i=1;i<2;i++){
inData >> ary[0];
}
num.txt: 0 10 20
three number and separate by a '\t'
但这不起作用,我该怎么办?