怎样在c++读取文本文件多行多列数据,并存入数组

2024-11-18 04:47:00
推荐回答(1个)
回答(1):

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21

#include
#include
#include

using namespace std;

int main(){
fstream input;
string str[50];
int i=0,j;
input.open("1.txt");
while(!input.eof()){
getline(input,str[i]);//将一行的内容全部读入
i++;//记录行数
}
input.close();
for(j=0;j cout< }
return true;
}