题解 1200: 回文串

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

筛选

回文串 (C++代码)

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

回文串 (C语言代码)

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

回文串 (C语言代码)

摘要:解题思路:主要是要考虑怎么接受字符串我用的是数组,用gets()函数来接受注意事项:参考代码:#include<stdio.h>#include<string.h>#inclu……

1200: 回文串

摘要:回文串判断,直接equal函数往上拍。#include&nbsp;<bits/stdc++.h>using&nbsp;namespace&nbsp;std;int&……

回文串 (Java代码)

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