#include<stdio.h>
#include<stdlib.h>
#include<string.h>
int ishw(char*p)
{
char *start=p;
char *end=p+strlen(p)-1;
while(start<end)
{
if(*start==*end)
{
start++;
end--;
}
else
return 0;
}
return 1;
}
int main()
{
char s[10];
scanf("%s",s);
if(ishw(s))
printf("是回文字符串");
else
printf("不是回文字符串");
system("pause");
return 0;
}
本文出自 “liveyoung” 博客,转载请与作者联系!