目录
最简单的理解方式就是一个字符串正着写和倒着写一样
#include <stdio.h>
#include <string.h>
//回文字符
int main()
{
int i = 0, j = 0;
char s[105] = { 0 };
scanf("%s", &s);
int len = strlen(s);
j = len - 2;
while (j > i)
{
if (s[i] != s[j])
{
printf("No");
break;
}
else
{
i++;
j--;
}
}
if (i >= j)
printf("Yes");
return 0;
}