提交时间:2023-08-22 16:04:58

运行 ID: 99291

#include<bits/stdc++.h> using namespace std; int main() { bool flag=1; stack<char> t; char a; while(cin>>a) { if(a=='(' || a=='[') t.push(a); else if(a==')'&&t.top()=='(' || a==']'&&t.top()=='[') t.pop(); else flag=0; } if(flag==1&&t.empty()) cout<<"OK"; else cout<<"Wrong"; }