C++怎么讲文本文件txt按行读入数组操作?
就比如txt里是:1111111aaaaaaa2222222bbbbbbb3333333cccccccc包含空格将数字保存在一个数组中将字母读到另一个数组中...
就比如txt里是:
1111 111
aaa aa aa
22 222 22
bbb bbb b
333 33 33
ccc cc ccc
包含空格
将数字保存在一个数组中
将字母读到另一个数组中 展开
1111 111
aaa aa aa
22 222 22
bbb bbb b
333 33 33
ccc cc ccc
包含空格
将数字保存在一个数组中
将字母读到另一个数组中 展开
3个回答
2013-06-01
展开全部
#include <iostream>
#include <fstream>
#include <vector>
#include <sstream>
#include <cctype>
using namespace std;
int main(void)
{
ifstream fs("d:\\i.txt");//假设是d盘根目录中的i.txt文件
string st;
vector<int> v1;
vector<string> v2;
while (fs>>st)
{
stringstream sts(st);
if (isdigit(sts.str()[0]))
{
int inp;
sts>>inp;
v1.push_back(inp);
}
else
v2.push_back(sts.str());
}
fs.close();
cout<<"Digit:"<<endl;
for (vector<int>::const_iterator i=v1.begin(); i!=v1.end(); i++) {
cout<<i[0]<<endl;
}
cout<<endl<<"Others:"<<endl;
for (vector<string>::const_iterator i=v2.begin(); i!=v2.end(); i++) {
cout<<i[0]<<endl;
}
return 0;
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询