Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
50213 | jiabokai | 练70.2 判断字符串是否为回文 | C++ | 无测评数据 | 0 MS | 0 KB | 303 | 2024-08-14 17:50:37 |
#include<bits/stdc++.h> using namespace std; bool palindrome(string s){ int i=0,j=s.size()-1; while(i<=j){ if(s[i]==s[j]){ i++; j--; }else return false; } return true; } int main() { string s; cin>>s; if(palindrome(s)){ cout<<"yes"; }else cout<<"no"; return 0; }