顺序容器4

#include<stack>
#include<iostream>
#include<string>
using namespace std;
int main()
{
stack<char>s;
string str;
cin>>str;
for(auto iter=str.begin();iter !=str.end();++iter)

s.push(*iter);
while(!s.empty()){
cout<<s.top();
s.pop();
}
cout<<endl;
return 0;
}

posted @ 2023-04-27 20:22  不会JAVA的小袁  阅读(11)  评论(0编辑  收藏  举报