Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
8858 | tangcong | 判断字符串是否为回文 | C++ | 通过 | 0 MS | 248 KB | 534 | 2023-02-12 08:29:44 |
#include<iostream> #include<cstdio> #include<cstring> using namespace std; int main() { char s[100]; int len,position; int i,j; gets(s);//获取字符串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; }