1461: 字符串 java 字符串追加方法的应用 摘要:- 思路 规律很明显: 当前字符串 a[i] = 上一个字符串a [i-1] + c + a[i-1] 这里字符c 我们能观察到他是…… 题解列表 2022年03月01日 0 点赞 0 评论 515 浏览 评分:0.0
C语言训练-8除不尽的数 摘要:解题思路: 注意事项:参考代码: #include<stdio.h>//x=((8*a+7)*8+1)*8+1//x=(2*a*17+15)*17+4int main()…… 题解列表 2022年03月01日 0 点赞 0 评论 485 浏览 评分:0.0
1458: 蓝桥杯2013年第四届真题-错误票据 摘要: #include #include #include #include using namespace std; const int …… 题解列表 2022年03月01日 0 点赞 0 评论 325 浏览 评分:0.0
求问大佬,为啥时间超限了 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main() { long int i, a, b, t; int c = 0, max = 0; int m = 0, k;…… 题解列表 2022年03月01日 0 点赞 2 评论 324 浏览 评分:0.0
C语言训练-大、小写问题 为什么不能 gets(a); strlwr(a);这样写? 摘要:解题思路:注意事项:参考代码: &nb 题解列表 2022年03月01日 0 点赞 0 评论 431 浏览 评分:0.0
[STL训练]Who's in the Middle 摘要:```cpp #include using namespace std; #include #include bool cmp(int a,int b){ return a < b;…… 题解列表 2022年03月01日 0 点赞 0 评论 517 浏览 评分:0.0
动态规划-最长上升子序列模型,注意前一次和后一次的美味度可相等! 摘要:#include<iostream>using namespace std;const int N=1005;int a[N],dp[N];int main(){ int n; cin>>…… 题解列表 2022年03月01日 0 点赞 0 评论 404 浏览 评分:0.0
蓝桥杯算法训练VIP-数的统计 摘要:#include<iostream>#include<algorithm>using namespace std;const int N=1005;int arr1[N];int arr2[N];in…… 题解列表 2022年03月01日 0 点赞 0 评论 318 浏览 评分:0.0
应该是对于初学者来说最好理解的 摘要:解题思路:注意事项:参考代码:import java.util.ArrayList;import java.util.Scanner;//写一函数,输入一个四位数字,要求输出这四个数字字符,但每两个数…… 题解列表 2022年03月01日 0 点赞 0 评论 559 浏览 评分:0.0