回文串 (C++代码) 摘要:解题思路: 可以尝试用c++来解决, 这样子更方便注意事项:参考代码:#include<stdio.h>#include<string.h>#include<string>#include<alg…… 题解列表 2018年03月11日 0 点赞 0 评论 900 浏览 评分:0.0
回文串不使用reverse解法(Python) 摘要:解题思路:注意事项:参考代码:str=input()n=len(str)m=0for i in range (0,n): if str[i]==str[-1-i]: m=m+1 …… 题解列表 2022年02月14日 0 点赞 0 评论 123 浏览 评分:0.0
回文串-题解(C++代码) 摘要:```cpp #include using namespace std; bool is_huiwen(string s){ bool b=true; int s_len=…… 题解列表 2020年03月20日 0 点赞 0 评论 449 浏览 评分:0.0
1200: 回文串(详细简单暴力解) 摘要:#include #include int main() { char a[256]; fgets(a, sizeof(a), stdin); // 去除fge…… 题解列表 2024年11月13日 0 点赞 0 评论 134 浏览 评分:0.0
回文串 (Java代码) 摘要:Scanner sc=new Scanner(System.in); String ia=sc.nextLine(); String ib=new StringBuffer(ia).rev…… 题解列表 2018年08月24日 0 点赞 0 评论 503 浏览 评分:2.0
回文串-题解(C语言代码) 摘要:```c #include #include #define N 256 // 1、先将数组逆序一个个赋值给一个新的数组 // 2、再拿新的数组和原来的数组进行比较,相同则输出'Y',否则输…… 题解列表 2020年06月23日 0 点赞 0 评论 468 浏览 评分:4.7
回文串 (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.*;public class 回文 { public static char huiwen(String a) { int n=0; …… 题解列表 2018年01月09日 0 点赞 0 评论 539 浏览 评分:6.0
回文串 (C语言代码)这类题目的通用解法,易理解 摘要:参考代码如下:#include <stdio.h> #include <string.h> #include <stdlib.h> int main(void) { char str[…… 题解列表 2018年04月16日 0 点赞 0 评论 930 浏览 评分:6.0
回文串 (C++代码)只做最简单的思路! 摘要:一开始着急写错了代码,写成了这样: ```cpp #include using namespace std; int main(){ char s[100]; gets(s); …… 题解列表 2020年02月18日 0 点赞 0 评论 395 浏览 评分:7.3
回文串-题解(C++代码) 摘要:```cpp 开头结尾一起判断 #include #include using namespace std; int main(int agrc, char const *arg…… 题解列表 2020年04月20日 0 点赞 0 评论 527 浏览 评分:8.0