使用递归,判断回文
使用递归,判断回文
#include <stdio.h>
#include<string.h>
int main()
{
int begin ,end;
char s[100];
gets(s);
begin=0;end=strlen(s)-1;
printf("%d",huiwen(s,begin,end));
}
int huiwen(char s[],int begin ,int end)
{
if(end-begin<=0)
return 1;
if(s[begin]!=s[end])
return 0;
else return huiwen(s,begin+1,end-1);
}