回文串 (Java代码) 摘要:Scanner sc=new Scanner(System.in); String ia=sc.nextLine(); String ib=new StringBuffer(ia).rev…… 题解列表 2018年08月24日 0 点赞 0 评论 501 浏览 评分:2.0
回文串 (Java代码) 摘要:解题思路:1.将字符串变成字符数组 2.外面写一个if else来判断字符数组的个数,偶数进入if 奇数进入else 3.两个里面只要满足前后对应位置的字符相同,num++。否则输出…… 题解列表 2018年08月10日 1 点赞 0 评论 812 浏览 评分: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
回文串 (C语言代码) 摘要:解题思路:主要是要考虑怎么接受字符串我用的是数组,用gets()函数来接受注意事项:参考代码:#include<stdio.h>#include<string.h>#include<stdlib.h>…… 题解列表 2018年07月01日 0 点赞 0 评论 524 浏览 评分:0.0
回文串 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstring> using namespace std; const int M=255+5; char…… 题解列表 2018年05月16日 0 点赞 0 评论 795 浏览 评分:0.0
回文串 (C语言代码) 摘要:解题思路:两头往中间走,相同继续走,不同就跳出,最后比对i,j参考代码:#include<stdio.h>#include<string.h>int main(){ char s[260]; …… 题解列表 2018年05月13日 0 点赞 0 评论 581 浏览 评分:0.0
回文串 (Java代码) 摘要:解题思路:注意事项:参考代码:public class 回文串_水到不能再水 { public static boolean isHw(String str) { for(int i=0;i…… 题解列表 2018年05月13日 0 点赞 0 评论 538 浏览 评分:0.0
回文串 (C语言代码)这类题目的通用解法,易理解 摘要:参考代码如下:#include <stdio.h> #include <string.h> #include <stdlib.h> int main(void) { char str[…… 题解列表 2018年04月16日 0 点赞 0 评论 928 浏览 评分:6.0
指针写法,简单易懂(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>char isHWC(char *a){ char *p = a; while(*a != '\0') { a++; …… 题解列表 2018年03月17日 0 点赞 0 评论 1121 浏览 评分:0.0
回文串(c语言)注意字符串比较和字符比较的区别 摘要:#include <stdio.h>#include <string.h>#define LEN 224void judge(char *);int main(void){ char ch[LE…… 题解列表 2018年03月13日 0 点赞 0 评论 1252 浏览 评分:0.0