两种方法
////方法1:字符串双指针方法
/*
#include <stdio.h>
#include <string.h>
int main()
{
char s[10000];
while(scanf("%s",s)!=EOF)//必须使用scanf才能AC,gets不行
{
getchar();
int n=strlen(s);
int flag=1;
for(int i=0,j=n-1;i<j;)
{
if(s[i]==s[j])
{
i++;
j--;
}
else
{
flag=0;
break;
}
}
&...
登录后发布评论
暂无评论,来抢沙发