首页 > 其他 > 详细

2_3 回文判断

时间:2014-07-22 23:04:42      阅读:316      评论:0      收藏:0      [点我收藏+]
#include <stdio.h>
#include <string.h>
void main()
{
    int x,i;
    char str[100];
    //gets(st1);
    printf("Please input a string to find out whether the string is palindrome or not\n");
    scanf("%s",str);
    x=strlen(str);

    for(i = 0; i <= x/2; i++)///比到一半就不比了
    {
        if(str[i] != str[x-i-1])///这就是比较两端的字符
        {
            break;//不是回文
        }
    }
    
    if(i> x/2)//没执行break,就是回文
        printf("YES\n");
    else
        printf("NO\n");    
}

2_3 回文判断,布布扣,bubuko.com

2_3 回文判断

原文:http://www.cnblogs.com/thrive/p/3861219.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!