码迷,mamicode.com
首页 > 编程语言 > 详细

C语言 回文

时间:2017-01-04 12:49:48      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:++   gets   printf   --   print   div   else   code   nbsp   

 1 #include <stdio.h>
 2 #include <string.h>
 3 int main()
 4 {
 5     char s[80];
 6     int i,j;
 7     printf("Please input the string:\n");
 8     gets(s);
 9     j=strlen(s)-1;
10     for(i=0;i<j;i++,j--)
11         if(s[i]!=s[j])
12             break;
13     if(i<j)
14         printf("No");
15     else
16         printf("Yes");
17     return 0;
18 }

 

C语言 回文

标签:++   gets   printf   --   print   div   else   code   nbsp   

原文地址:http://www.cnblogs.com/jianf/p/6248134.html

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