- 题目描述:
-
给出一个长度不超过1000的字符串,判断它是不是回文(顺读,逆读均相同)的。
- 输入:
-
输入包括一行字符串,其长度不超过1000。
- 输出:
-
可能有多组测试数据,对于每组数据,如果是回文字符串则输出"Yes!”,否则输出"No!"。
- 样例输入:
-
hellolleh helloworld
- 样例输出:
-
Yes! No!
代码:
#include <stdio.h> #include <string.h> #define N 1000 int main(void) { int n, i; char s[N+1]; while (scanf("%s", s) != EOF) { n = strlen(s); for(i=0; i<=n/2; i++) { if (s[i] != s[n-1-i]) break;; } if (i > n/2) printf("Yes! "); else printf("No! "); } return 0; } /************************************************************** Problem: 1192 User: liangrx06 Language: C Result: Accepted Time:10 ms Memory:912 kb ****************************************************************/