C_and_CPP 版 (精华区)

发信人: bille (lbg&g), 信区: C_and_CPP
标  题: Re: 用iostream如何读入一个句子
发信站: 哈工大紫丁香 (2003年10月20日17:00:19 星期一), 站内信件

vector<string> v_str;
string str_in;
do
{
    cin>>str_in;
    v_str.push_back(str_in);
}while(some cond.)
or read from file,like this:
vector<string> v_str;
ifstream i_file(<PATH>);
string line;
while(getline(i_file,line))
{
    v_str.push_back(line);
}//over

【 在 jackie (Jackie) 的大作中提到: 】
: 每行输入一个句子,如何将该句的每个单词用iostream读到vector<string>中

--
※ 来源:·哈工大紫丁香 bbs.hit.edu.cn·[FROM: 202.118.230.220]
[百宝箱] [返回首页] [上级目录] [根目录] [返回顶部] [刷新] [返回]
Powered by KBS BBS 2.0 (http://dev.kcn.cn)
页面执行时间:3.324毫秒