题解 1200: 回文串

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

筛选

c语言一般解法

摘要:#include #include int main() { char s[1000],s1[1000]; gets(s); int len=strlen(s); ……

回文串(C++)简单易懂

摘要:参考代码:#include <iostream>#include <string>using namespace std;bool isPalindrome(string str) {    int ……

1200: 回文串

摘要:参考代码:#include<stdio.h> #include<string.h> int main(){ int i,j=0; char a[260],b[260]; gets(a);……

回文串-字符串处理(C++)

摘要:参考代码:#include<cstdio>#include<cstring>const int maxn = 256;   //判断字符串str是否是“回文串”bool judge(char str[……

C语言简单代码

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[256]; int i,j; gets(a); j=strle……

1200: 回文串

摘要:```cpp #include #include using namespace std; int main() { char ch[255]; bool falg=tr……

回文串(基础解法)

摘要: 话不多说直接上代码 #include #include int main() { char a[1000]; char b[1000]; //用来复制……