不会的看我!!!!
2024-02-24 09:58:13
发布于:广东
6阅读
0回复
0点赞
#include <bits/stdc++.h>
#include <stack>
using namespace std;
stack<char>st;
int main(){
char s;
while(cin>>s){
if(s=='@') break;
else if(s=='(') st.push(s);
else if(s==')'){
if(!st.empty()) st.pop();
else{
cout<<"NO";
return 0;
}
}
}
if(!st.empty()) cout<<"NO";
else cout<<"YES";
return 0;
}
全部评论 1
发了2条你真有才
2024-02-24 来自 广东
1
有帮助,赞一个