Suty


私信TA

用户名:zf1010110

访问量:3630

签 名:

等  级
排  名 11326
经  验 1035
参赛次数 0
文章发表 8
年  龄 21
在职情况 学生
学  校 ZYNC
专  业 IoT

  自我简介:

解题思路:

两头往中间走,相同继续走,不同就跳出,最后比对i,j



参考代码:

#include<stdio.h>

#include<string.h>

int main()

{

    char s[260];

    int i,j;

    while(gets(s))

    {

    int len =strlen(s);

i=0;

j=len-1;

while(i<j)

{

if(s[i++]!=s[j--]) break; 

}

if(i>=j) printf("Y\n");

else printf("N\n");

}

    return 0;

}


 

0.0分

0 人评分

  评论区

  • «
  • »