题目描述
将一个英文语句以单词为单位逆序排放。例如“I am a boy”,逆序排放后为“boy a am I”
所有单词之间用一个空格隔开,语句中除了英文字母外,不再包含其他字符
好像写过类似的题了
#include<iostream> #include<sstream> using namespace std; int main(){ string s; getline(cin, s); stringstream ss(s);//注意这里写getline!! 用cin读不完的 string temp,ans; while(ss>>temp){ ans=temp+' '+ans; } ans.pop_back(); cout<<ans; return 0; }