C++逐行读取txt中的数据,怎么保存并到数组中?

2024年11月17日 23:52
有1个网友回答
网友(1):

刚刚写了个,自己看看吧,应该看得明白。
#include
#include
using namespace std;

void main()
{
fstream file;
file.open("s.txt",ios::in);
if(!file)
cout<<"file not founded"< int a [100];
int pos = 0;
while(!file.eof())//是否到文件结尾
{
file>>a[pos];
pos++;
if(pos>=100)
break;
}
file.close();
for(int i = 0;i cout<}