我有数字文件。
3
2 15 41
4 1 2 3 4
3 22 11 24
第一行显示其他行是如何存在的(最多 100 行)。一行中的数字不能超过 50。
行中的数字需要放入数组中,例如:
line[lineNum][num]
我是 C++ 新手,我要求以最简单的方式做到这一点。我试着做:
#include <iostream>
#include <fstream>
#include <string>
using namespace std;
int main(int argc, char *argv[])
{
int kiek;
string str[100][50];
string line;
int a = 0;
int b = 0;
ifstream failas("Duom1.txt");
if (failas.is_open())
{
while (failas)
{
if (a == 29)
{
a = 0;
b++;
}
getline(failas, str[a][b], ' ');
}
a++;
}
cout << str[0][0] << endl;
}