Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
37141 | chenyifei | 判断字符串是否为回文 | C++ | 通过 | 0 MS | 252 KB | 300 | 2024-01-19 15:19:01 |
#include<iostream> #include<string> #include<cstring> using namespace std; int main() { char s[100]; int len; int i,j; gets(s); len=strlen(s); i=0; j=len-1; while(i<j&&s[i]==s[j]){ i++; j--; } if(i>=j){ cout<<"yes"<<endl; } else cout<<"no"<<endl; return 0; }