首页
DreamJudge
院校信息
专业题库
模拟考试
机试真题
上岸课程
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
zxjrheaven
2025年3月24日 19:37
回文字符串 题解:暴力
P1414
回复 0
|
赞 0
|
浏览 64
#include <bits/stdc++.h> using namespace std; int main() { string str; while(getline(cin,str)) { string ans=str; reverse(str.begin(),str.end()); &n...
Griffies
2024年3月26日 01:32
回文字符串 题解:C++ 指针
P1414
回复 0
|
赞 2
|
浏览 554
#include <iostream> #include <algorithm> #include <cstring> using namespace std; int main(){ char s1[1005]; while(scanf("%s",s1)!=EOF){ char *p=s1; char *q=s1+strlen(s1)-1; &...
小酒
2024年3月15日 15:34
回文字符串 题解:
P1414
回复 0
|
赞 5
|
浏览 574
1414解题思路 #include <bits/stdc++.h> using namespace std; int main() { char a[1005]={0}; while(gets(a)) { int l=strlen(a); int count=0; for(int j=0;j<l/2;j++) { if(a[j]==a[l-1-j]) count++; } if(count==l/2...
小王桐学
2024年3月3日 23:26
回文字符串 题解:C
P1414
回复 0
|
赞 1
|
浏览 544
#include <stdio.h> #include <string.h> int main() { char s[1000]; while(gets(s) != NULL) { char *p,*q; p = s; q = s; while(*q != '\0') q++; q--; while(p < q && *p == *q) p++,q--; if(p >= q) printf("Yes!\n"); else printf("No!\n"); ...
题目
回文字符串
题解数量
4
发布题解
在线答疑
热门题解
1
回文字符串 题解:
2
回文字符串 题解:C++ 指针
3
回文字符串 题解:C
4
回文字符串 题解:暴力