正解,但先自己写
2024-03-24 17:03:44
发布于:广东
17阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
int main(){
stack<char> st;
char a;
while(cin>>a){
if(a=='#'){
if(!st.empty())st.pop();
}
else{
st.push(a);
}
}
string s = " ";
while(!st.empty()){
s += st.top();
st.pop();
}
for(int i=s.size()-1;i>=0;--i){
cout<<s[i];
}
return 0;
}
这里空空如也
有帮助,赞一个