Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
9714 | 孙喻桐 | 判断字符串是否是回文串 | C++ | 通过 | 100 | 0 MS | 260 KB | 336 | 2020-11-18 18:48:50 |
#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-i-1]){ flag=1; break; } } if(flag==0)cout<<"Yes"<<endl; else cout<<"No"<<endl; } return 0; }