欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

7-32 说反话-加强版 (20 分)

程序员文章站 2024-02-18 08:30:52
...
#include<bits/stdc++.h>
using namespace std;
int main(){
	string str;
	char c;
	vector<string> v;
	while(cin>>str){
		v.push_back(str);
	}
	for(int j=v.size()-1;j>=0;j--){
		cout<<v[j];
		if(j!=0) cout<<" ";
	}
	
	return 0;
}