提交时间:2023-08-22 16:17:34
运行 ID: 99337
#include<bits/stdc++.h> using namespace std; int main(){ char x[1000]; int a=0,b=0; gets(x); for(int i=1;i<=strlen(x);i++){ if(x[i]=='['){ a++; } if(x[i]=='('){ b++; } if(x[i]==')'&&b==1){ b--; } if(x[i]==']'&&a==1){ a--; }else{ cout <<"Wrong"; return 0; } } if(a!=0&&b!=0){ cout <<"Wrong"; }else{ cout <<"Yes"; } return 0; }