题解 1200: 回文串 摘要: #include using namespace std; char s[100000]; int main(){ cin>>s; int…… 题解列表 2023年12月15日 0 点赞 0 评论 322 浏览 评分:0.0
回文串-题解 摘要: 参考代码:#include"bits/stdc++.h" using namespace std; char str[280]; bool check(char *s,int a,int b)…… 题解列表 2021年04月14日 0 点赞 0 评论 420 浏览 评分:0.0
1200: 回文串(C语言) 摘要: #include #include int main() { char str[255]; scanf("%s",str); int length=strlen…… 题解列表 2023年07月28日 0 点赞 0 评论 339 浏览 评分:0.0
回文串 (C语言代码) 摘要:#include<stdio.h> #include<string.h> int main(){ char str[255]; while(gets(str)){ …… 题解列表 2018年10月13日 0 点赞 0 评论 1126 浏览 评分:0.0
回文串 (Java代码) 摘要:解题思路:首先将输入的字符串a利用StringBuffer逆序处理得到字符串b然后利用循环对字符串进行访问即可注意事项:参考代码:import java.util.Scanner; public…… 题解列表 2018年01月09日 9 点赞 3 评论 698 浏览 评分:0.0
回文串 (C++代码) 摘要:解题思路: 可以尝试用c++来解决, 这样子更方便注意事项:参考代码:#include<stdio.h>#include<string.h>#include<string>#include<alg…… 题解列表 2018年03月11日 0 点赞 0 评论 1327 浏览 评分: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 评论 1897 浏览 评分:0.0
指针写法,简单易懂(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>char isHWC(char *a){ char *p = a; while(*a != '\0') { a++; …… 题解列表 2018年03月17日 0 点赞 0 评论 1480 浏览 评分:0.0
回文串 (Java代码) 摘要:解题思路:注意事项:参考代码:public class 回文串_水到不能再水 { public static boolean isHw(String str) { for(int i=0;i…… 题解列表 2018年05月13日 0 点赞 0 评论 904 浏览 评分:0.0