题解 1200: 回文串

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

回文串 (C语言代码)

摘要:解题思路:注意事项:注意空格参考代码:#include<stdio.h>#include<string.h>intmain(){&nbsp;&nbsp;&……

回文串 (Java代码)

摘要:解题思路:首先将输入的字符串a利用StringBuffer逆序处理得到字符串b然后利用循环对字符串进行访问即可注意事项:参考代码:import&nbsp;java.util.Scanner;p……

回文串 (Java代码)

摘要:解题思路:注意事项:参考代码:importjava.util.*;publicclass回文{&nbsp;publicstaticcharhuiwen(Stringa){&nbsp;&……

回文串 (C++代码)

摘要:解题思路:&nbsp;&nbsp;可以尝试用c++来解决,这样子更方便注意事项:参考代码:#include<stdio.h>#include<string.h>……

回文串 (Java代码)

摘要:解题思路:注意事项:参考代码:public&nbsp;class&nbsp;回文串_水到不能再水&nbsp;{public&nbsp;static&nbsp;b……

回文串 (C语言代码)

摘要:解题思路:两头往中间走,相同继续走,不同就跳出,最后比对i,j参考代码:#include<stdio.h>#include<string.h>intmain(){&nb……