0
已解决
高子健
新手天翼
新手天翼
如题目
高子健在2020-09-06 19:24:24追加了内容
#include<bits/stdc++.h>
using namespace std;
bool hw(string s){
int i=0,j=s.size()-1;
while(i<=j){
if(s[i]==s[j])
return true;
i++;
j--;
}
return false;
}
int main(){
string cnt=0,x;
cin>>x;
if(hw(x)&&(x[x.size()]-'0')%2==1)
cout<<"Yes";
else
cout<<"No";
return 0;
}
3833 。看一下题目吧
高子健在2020-09-06 20:03:14追加了内容
。
0
1
0
0
0
0
0
0