Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
9746 | 袁梦琪 | 判断字符串是否是回文串 | C++ | 通过 | 100 | 0 MS | 248 KB | 336 | 2020-11-18 18:54:17 |
#include<bits/stdc++.h> using namespace std; char str[1001]; int main(){ int n,flag,len; 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; }