题解 1200: 回文串

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

筛选

回文串(基础解法)

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

c语言一般解法

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

回文串 (C语言代码)

摘要:解题思路:注意事项:注意空格参考代码:#include<stdio.h>#include<string.h>int main(){    char str1[260],str2[260];    in……

双指针来解决回文串

摘要:解题思路:双指针来解决回文串注意事项:参考代码:#include<stdio.h> #include<string.h> int isSym(const char* str) { int……

回文串(简单易懂c语言)

摘要:解题思路:先把a数组倒叙赋值给b数组,接着比较a,b数组是否相等注意事项:参考代码:                #include <stdio.h>               

java--study||O.o

摘要:参考代码:import java.util.Scanner; public class Main  { public static void main(String[] args)     ……

回文串-题解(Java代码)

摘要:```java import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamRead……