新手上路,关于“回文”问题,不知哪里出现了错误,烦劳各位指点一下
#include <cstdlib>#include <iostream>
#include <string.h>
using namespace std;
int main(int argc, char *argv[])
{
int i,j;
char str[20];
gets(str);
for(i=0,j=strlen(str)-1;i<j;i++,j--)
{
if(str[i]==str[j])
continue;
else
break;
}
if(i>=j)
printf("yes");
else
printf("no");
system("PAUSE");
return EXIT_SUCCESS;
}