getline解法,快一点
2023-08-16 10:38:56
发布于:浙江
0阅读
0回复
0点赞
#include<iostream>
#include<string>
#include<bits/stdc++.h>
using namespace std;
char sta[256];
int top=0,a,b=0,c=0;
int pop(){
int r;
if(top>0){
return sta[top];
}else{
r=-1;//题目不会出现数,题目所有数的话就return false
}
}
int main(){
cin.getline(sta,255,'@');
int sl = strlen(sta);
for(int i=0;i<=sl;i++){
if(sta[i]'(' && sta[i-1]<'a' || sta[i-1]>'z' && sta[i-1]<'A' || sta[i-1]>'Z'){
b+=1;
}
if(sta[i]')' && sta[i+1]<'a' || sta[i+1]>'z' && sta[i+1]<'A' || sta[i+1]>'Z'){
b-=1;
}
}
if(b==0){
cout<<"YES";
}else{
cout<<"NO";
}
return 0;
}
这里空空如也
有帮助,赞一个