6-5 判断回文字符串
分数 20
全屏浏览题目
切换布局
作者?C课程组
单位?浙江大学
本题要求编写函数,判断给定的一串字符是否为“回文”。所谓“回文”是指顺读和倒读都一样的字符串。如“XYZYX”和“xyzzyx”都是回文。
bool palindrome( char *s );
函数palindrome
判断输入字符串char *s
是否为回文。若是则返回true
,否则返回false
。
#include <stdio.h> #include <string.h> #define MAXN 20 typedef enum {false, true} bool; bool palindrome( char *s ); int main() { char s[MAXN]; scanf("%s", s); if ( palindrome(s)==true ) printf("Yes\n"); else printf("No\n"); printf("%s\n", s); return 0; } /* 你的代码将被嵌在这里 */
thisistrueurtsisiht
Yes
thisistrueurtsisiht
thisisnottrue
No
thisisnottrue
代码长度限制
16 KB
时间限制
400 ms
内存限制
64 MB
bool palindrome( char *s ){
int len=strlen(s);
for(int i=0;i<=len/2;i++){
if(s[i]!=s[len-i-1]){
return false;
}
}
return true;
}