题目描述
输入一个字符串,输出该字符串是否回文。回文是指顺读和倒读都一样的字符串。
输入格式
输入一行字符串,长度小于 100100。
输出格式
如果字符串是回文,输出 yes
;否则,输出 no
。
虽然我做的非常简单 不要问为什么
#include<bits/stdc++.h>
using namespace std;
int l;
char ch[3000];
int main(){
scanf("%s",&ch);
l=strlen(ch);
for(int i=0;i<l;i++)
if(ch[i]!=ch[l-i-1])
{
printf("no\n");
return 0;
}
printf("yes\n");
return 0;
}
暴力枚举输入啊 然后对比 非常简单