0
已解决
彭馨仪
高级守护
高级守护
题目链接: 酷町堂:8335
江湖救急!SOS!WA40!!!
#include<bits/stdc++.h>
using namespace std;
string s;
int main(){
int cnt=0;
getline(cin,s);
int tou=0,wei=0;
for(int i=0;i<s.size();i++){
if(s[i]==' '){
wei=i-1;
int t=tou,w=wei,ji=1;
while(t<w){
if(s[t]!=s[w]){
ji=0;
}
t++;
w--;
}
if(ji==1)cnt++;
tou=i+1;
}
}
cout<<cnt;
return 0;
}