Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
9722 | 王兮 | 判断字符串是否是回文串 | C++ | 通过 | 100 | 0 MS | 256 KB | 338 | 2020-11-18 18:50:36 |
#include<bits/stdc++.h> using namespace std; int main(){ int n,flag,len; char str[1001]; cin>>n; while(n--){ flag=0; cin>>str; len=strlen(str); for(int i=0;i<=len/2;i++){ if(str[i]!=str[len-1-i]){ flag=1; break; } } if(flag==0) cout<<"Yes"<<endl; else cout<<"No"<<endl; } return 0; }