将.txt文件读入多个数组

时间:2017-04-02 18:21:35

标签: c++ arrays

我需要输入一个包含" 1 Louise Antony 5:00"的文件。这需要分成3个数组。例如,1应该进入IDArray,Louise Antony进入nameArray,5:5进入paceArray。

我的代码在这里:

    int index;
    for (index = 0; index < 25; index++) {
        infile >> IDArray[index] >> nameArray[index] >> paceArray[index];
        getline(infile, tmp);
    }

此代码输出尚未填充的数据。我现在迷失了如何解决这个问题。

0 个答案:

没有答案