奥礼网
新记
怎样用C++从txt文件中读取数据写入数组
如题所述
举报该文章
其他看法
第1个回答 2017-06-25
ifsream inputfile("input.txt");
int count ;
inputfile >> count;
for (int i = 0; i < count; i++)
inputfile >> num[i];本回答被提问者采纳
相似回答
大家正在搜
相关问题
如何用C++从.txt文件中读取数据写入数组
如何用C++从.txt文件中读取数据写入数组
C++如何在文件中读取数据,然后保存在一个数组中
C++ 怎么从txt文件中读取出来写入数组中呢
怎样用C++从txt文件中读取数据写入数组
请问C++ 如何从txt文件中读取数据,然后保存在类的数组中...
如何用C++从.txt文件中读取数据写入数组
C++从TXT格式文件中读入数据并写入二维数组