码迷,mamicode.com
首页 > 其他好文 > 详细

2_3 回文判断

时间:2014-07-22 23:04:32      阅读:240      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   for   re   

#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 回文判断

标签:style   blog   color   io   for   re   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!