can,can,need 摘要:解题思路:#define _CRT_SECURE_NO_WARNINGS#include<stdio.h>#include<stdlib.h>#include<string.h>int main(){…… 题解列表 2022年06月20日 0 点赞 1 评论 294 浏览 评分:9.9
密码截获(C语言)最长对称子串 摘要: #include #include int judge(char s[],int l) { int i; int j; …… 题解列表 2022年07月16日 0 点赞 0 评论 304 浏览 评分:0.0
1209: 密码截获 摘要:```cpp #include using namespace std; bool pan_huiwei(string s) { int len=s.size(); for…… 题解列表 2023年01月05日 0 点赞 0 评论 145 浏览 评分:9.9
还是不理解为啥错了 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int ans = 0,maxx,flag,l,k,q,p;…… 题解列表 2023年03月01日 0 点赞 0 评论 67 浏览 评分:0.0
题解 1209: 密码截获(C++) 摘要:```cpp #include #include using namespace std; int main() { char a[1000]; char b[1000]; …… 题解列表 2023年03月28日 0 点赞 0 评论 135 浏览 评分:9.9
密码截获——python 摘要:解题思路:注意事项:参考代码:while True: try: L = input() L2 = [] if len(L) == 1: …… 题解列表 2023年04月04日 0 点赞 0 评论 75 浏览 评分:0.0
又是一个动态规划的题 摘要:#include<iostream> using namespace std; int main() { string s; while(getline(cin,s)) …… 题解列表 2023年08月18日 0 点赞 0 评论 60 浏览 评分:0.0
java--study||O.o 摘要:参考代码:import java.util.Scanner; public class Main { public static void main(String[] args) …… 题解列表 2024年01月31日 0 点赞 0 评论 135 浏览 评分:9.9
java暴力破解(简单易懂) 摘要:解题思路:暴力破解,通过判断每个子序列找到最大长度注意事项:StringBuffer类和String类不能比较,需要进行类型转换参考代码: import java.util.*; import j…… 题解列表 2024年03月17日 0 点赞 0 评论 284 浏览 评分:9.9
双重for循环,截取所有可能的子字符串,判断是否是对称,维护一个最长对称长度 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main { public static void main(String[…… 题解列表 2024年03月25日 0 点赞 0 评论 110 浏览 评分:0.0