题解 1200: 回文串 摘要: #include using namespace std; char s[100000]; int main(){ cin>>s; int…… 题解列表 2023年12月15日 0 点赞 0 评论 95 浏览 评分:0.0
c语言一般解法 摘要:#include #include int main() { char s[1000],s1[1000]; gets(s); int len=strlen(s); …… 题解列表 2023年12月05日 0 点赞 0 评论 166 浏览 评分:9.9
1200: 回文串(C语言) 摘要: #include #include int main() { char str[255]; scanf("%s",str); int length=strlen…… 题解列表 2023年07月28日 0 点赞 0 评论 133 浏览 评分:0.0
回文串(C++)简单易懂 摘要:参考代码:#include <iostream>#include <string>using namespace std;bool isPalindrome(string str) { int …… 题解列表 2023年07月19日 0 点赞 0 评论 256 浏览 评分:9.9
回文串——判断一个字符串是否为回文串 摘要:解题思路:利用列表步长为-1时,反向输出注意事项:参考代码:L = list(input())if L == L[::-1]: print('Y')else: print(…… 题解列表 2023年03月18日 0 点赞 0 评论 127 浏览 评分:0.0
1200: 回文串 摘要:参考代码:#include<stdio.h> #include<string.h> int main(){ int i,j=0; char a[260],b[260]; gets(a);…… 题解列表 2023年01月31日 0 点赞 0 评论 181 浏览 评分:9.9
回文串-字符串处理(C++) 摘要:参考代码:#include<cstdio>#include<cstring>const int maxn = 256; //判断字符串str是否是“回文串”bool judge(char str[…… 题解列表 2023年01月23日 0 点赞 0 评论 82 浏览 评分:0.0
C语言简单代码 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[256]; int i,j; gets(a); j=strle…… 题解列表 2023年01月02日 0 点赞 0 评论 224 浏览 评分:9.9
1200: 回文串 摘要:```cpp #include #include using namespace std; int main() { char ch[255]; bool falg=tr…… 题解列表 2023年01月01日 0 点赞 0 评论 291 浏览 评分:9.9
回文串(基础解法) 摘要: 话不多说直接上代码 #include #include int main() { char a[1000]; char b[1000]; //用来复制…… 题解列表 2022年12月24日 0 点赞 0 评论 235 浏览 评分:9.0