文章
9
粉丝
37
获赞
91
访问
2.3k
#include<bits/stdc++.h>
using namespace std;
int main(){
char a[100],b[100];
while(cin>>a){
stack<int> t;
int len=strlen(a);
for(int i=0;i<len;i++){
if(a[i]=='('){
t.push(i);
b[i]=' ';
}
else if(a[i]==')'){
if(!t.empty()){
t.pop();
b[i]=' ';
}
else{
b[i]='?';
}
}
else{
b[i]=' ';
}
}
while(!t.empty()){
int now=t.top();
b[now]='$';
t.pop();
}
b[len]='\0';
cout<<a<<endl;
cout<<b<<endl;
}
...
登录后发布评论
暂无评论,来抢沙发