#include<stdio.h>
#include<stdlib.h>
int fun(char *str);
#define N 80
int main()
{
char s[N];
printf("enter a string:");
gets(s);
puts(s);
if(fun(s))
printf("yes\n");
else
printf("No\n");
}
int fun(char *str)*返回类型为int,因为为bool类型*
{
int i,j=0;
int flag=1;
while(str[j])
j++;
j--;
for(i=0;i<j;i++,j--)
{
if(str[i]!=str[j])
{
flag=0;
break;
}
}
return flag;
}
判断是否是回文字符串
最新推荐文章于 2024-11-02 15:25:13 发布