搜索
编程论坛
→
开发语言
→
C++论坛
→
『 C++教室 』
→ 请问如何将text中的内容用cout输出啊
标题:
请问如何将text中的内容用cout输出啊
只看楼主
沧海一鼠
等 级:
新手上路
帖 子:1
专家分:0
注 册:2006-9-26
楼主
问题点数:0 回复次数:2
请问如何将text中的内容用cout输出啊
srring word;
vector<string>text;
while (cin>>word)
{
text.push_back(word);
}
请问如何将text中的内容用cout输出啊
搜索更多相关主题的帖子:
cout
text
输出
2006-09-26 21:24
朦朦胧胧
等 级:
新手上路
帖 子:21
专家分:0
注 册:2006-9-19
第
2
楼
得分:0
#include<iostream>
#include<vector>
#include<string>
using namespace std;
void main()
{
string word;
vector<string>text;
for(int i=0;i<5;i++)
{
cin>>word;
text.push_back(word);
}
for(int j=0;j<text.size();j++)
{
cout<<text[j].c_str()<<endl;
}
}
2006-09-27 12:29
wfpb
等 级:
贵宾
威 望:
29
帖 子:2188
专家分:0
注 册:2006-4-2
第
3
楼
得分:0
举例:泛型编程上的例子。
#include<iostream>
#include<vector>
#include<string>
using namespace std;
void main()
{
string tmp;
vector<string>V;
while(getline(cin,temp))
V.push_back(word);
copy(V.begin(),V.end(),ostream_iterator<string>(cout,'\n'));
}
" target="_blank">
[glow=255,red,2]
wfpb的部落格
[/glow]
学习成为生活的重要组成部分!
2006-09-27 13:01
3
1/1页
1
参与讨论请移步原网站贴子:
https://bbs.bccn.net/thread-93153-1-1.html
关于我们
|
广告合作
|
编程中国
|
清除Cookies
|
TOP
|
手机版
编程中国
版权所有,并保留所有权利。
Powered by
Discuz
, Processed in 0.269775 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved