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

PTA1009 说反话

程序员文章站 2022-03-08 18:45:39
...

PTA 1009 说反话

vector用法介绍

#include<iostream>
#include<vector>
#include<string>
using namespace std;
int main()
{
	vector<string>a;
	string s;
	while(cin>>s)
	{
		a.push_back(s); //将字符串加入向量
		char c=getchar();
		if(c=='/n') break;
	}
	for(int i=a.size()-1;i>=0;i--)
	{
		cout<<a[i];
		if(i)cout<<" ";
	}
	return 0;
}
相关标签: 1009 说反话