题解 2875: 回文子串

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

筛选

2875: 回文子串

摘要:解题思路:注意事项:参考代码:s = input().strip()n = len(s)for i in range(2,n-1):    a = 0    b = a + i    while b ……

2875: 回文子串

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h> int main( ){    char s[501]={0};    int n,len,beg……