Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
37139 张予馨 判断字符串是否为回文 C++ 通过 1 MS 252 KB 316 2024-01-19 15:18:47

Tests(4/4):


#include<iostream> #include<cstring> #include<string> #include<cstdio> using namespace std; int main() { char s[100]; int len,position; int i,j; gets(s); i=0; len=strlen(s); j=len-1; while((i<j)&&s[i]==s[j]){ i++; j--; } if(i>=j){ cout<<"yes"<<endl; } else cout<<"no"<<endl; }


测评信息: