Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
41503 | 老方 | 判断字符串是否为回文 | C++ | 通过 | 1 MS | 244 KB | 235 | 2024-02-21 10:56:15 |
#include<bits/stdc++.h> using namespace std; int main(){ char str[100]; cin>>str; for(int i=0;i<strlen(str)/2;i++){ if(!(str[i]==str[strlen(str)-1-i])){ cout<<"no"; return 0; } } cout<<"yes"; return 0; }