C++,如何把一个文本里的单词一个个存入数组结构?

文本是这样的:wheniwakeuptheothersideofthebediscoldmyfingersstretchoutseekingprimswarmthbutf... 文本是这样的:
when i wake up the other side of the bed is cold my
fingers stretch out seeking prims warmth but finding
only the rough canvas cover of the mattress she
must have had bad dreams and climbed in with our
mother of course she did this is the day of the
reaping
i prop myself up on one elbow theres enough light in

怎么实现这个: arry[0].word = when array[1].word = I array[2].word=wake
我试着用了getline: while(getline(ifs,useless,' ')
但是这样的话会把很多空格,换行一起录入进去,有没有办法只单单录入单词?
展开
 我来答
DAIZYWADE
2017-02-02 · TA获得超过359个赞
知道小有建树答主
回答量:214
采纳率:0%
帮助的人:32.4万
展开全部
可以用string,遇到空格会自动换下一个。
#include<iostream>
int n;
string s[1001];
int main(){
freopen("text.in","r",stdin);
for (int i=1; i<=n; i++) cin>>s[i];
return 0;
}
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式