//判断回文
#include<stdio.h>
int main(){
char str[80];
int i=0;
while((str[i]=getchar())!='\n'){
i++;
}
str[i]='\0';
int head=0;
int end=i;
while(head<end){
if(str[head]!=str[end]){
break;
}
}
if(head<end){
printf("is\n");
}
else{
printf("not\n");
}
return 0;
}












![如何将联系人从Android转移到 OPPO? [解决了]](https://img-blog.csdnimg.cn/direct/f8f5f8c89a2042c88e436791927dca8f.jpeg)






