很巧妙的倒序,就是一个一个的从前往后罗列,就可以达到倒序的效果。
#include <iostream> using namespace std; int main() { string a,b; while (cin>>a) b=a+' '+b; cout<<b; return 0; }