回文串 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstring> using namespace std; const int M=255+5; char…… 题解列表 2018年05月16日 0 点赞 0 评论 795 浏览 评分:0.0
回文串 (C语言代码) 摘要:解题思路:主要是要考虑怎么接受字符串我用的是数组,用gets()函数来接受注意事项:参考代码:#include<stdio.h>#include<string.h>#include<stdlib.h>…… 题解列表 2018年07月01日 0 点赞 0 评论 524 浏览 评分:0.0
回文串 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[1000]; gets(a); int i=strlen(a)…… 题解列表 2018年07月26日 2 点赞 0 评论 788 浏览 评分:0.0
回文串 (Java代码) 摘要:解题思路:1.将字符串变成字符数组 2.外面写一个if else来判断字符数组的个数,偶数进入if 奇数进入else 3.两个里面只要满足前后对应位置的字符相同,num++。否则输出…… 题解列表 2018年08月10日 1 点赞 0 评论 812 浏览 评分: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语言代码) 摘要:#include<stdio.h> #include<string.h> int main(){ char str[255]; while(gets(str)){ …… 题解列表 2018年10月13日 0 点赞 0 评论 363 浏览 评分:0.0
回文串 (C++代码)简洁的方法 摘要:解题思路: 无需多于变量,只需要一个字符串就够了。参考代码:#include<bits/stdc++.h> using namespace std; int main(){ string…… 题解列表 2018年12月05日 0 点赞 0 评论 935 浏览 评分:9.9
回文串 (Java代码) 摘要:解题思路:分割左右两边 注意事项:参考代码:import java.util.Scanner; public class Main { public static void main(Strin…… 题解列表 2019年03月05日 0 点赞 0 评论 460 浏览 评分:0.0
。。串串。。:回文串 (C语言代码) 摘要:#include<stdio.h> #include<string.h> int main() { int i,flag=1; char a[260]; gets(…… 题解列表 2019年03月08日 1 点赞 0 评论 613 浏览 评分:0.0
回文串 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int f(char a[]){ int i,j,k; k=strlen(a); for(i=0,j…… 题解列表 2019年04月22日 0 点赞 0 评论 405 浏览 评分:0.0