Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
23787 | LeoWang | 判断字符串是否为回文 | C++ | 解答错误 | 0 MS | 244 KB | 400 | 2023-07-31 22:07:17 |
#include<iostream> #include<cstring> using namespace std; int main() { char s[505]; gets(s); int max = 0; int pos = 0; int cnt = 0; for(int i = 0; i < strlen(s); i++){ if(s[i] != ' ' && s[i] != '.'){ cnt++; } else{ if(cnt>max){ max = cnt; pos = i-cnt; } cnt = 0; } } for(int i = pos; i < pos+max; i++){ cout<<s[i]; } return 0; }