1449: 蓝桥杯2014年第五届真题-波动数列 摘要:```cpp #include using namespace std; int n,s,a,b,f[1001][1001]; int get_mod(int a ,int b) { …… 题解列表 2023年02月01日 0 点赞 1 评论 621 浏览 评分:9.9
1969: 蓝桥杯算法提高VIP-字符串跳步 摘要:```cpp #include using namespace std; int main() { unsigned int start,step; string s; …… 题解列表 2023年02月01日 0 点赞 0 评论 281 浏览 评分:9.9
1621: 蓝桥杯算法训练VIP-字符串编辑 摘要:```cpp #include using namespace std; int main() { string s; int num=0; getline(ci…… 题解列表 2023年02月01日 0 点赞 0 评论 376 浏览 评分:9.9
1728: 字符串的查找删除 摘要:```cpp #include #include using namespace std; int main() { char del[20],str[200]; get…… 题解列表 2023年02月01日 0 点赞 0 评论 431 浏览 评分:9.9
1826: 蓝桥杯2015年第六届真题-切开字符串 摘要:```cpp #include #include using namespace std; string st; int n,m; bool dfs(string s) { i…… 题解列表 2023年02月01日 0 点赞 0 评论 592 浏览 评分:9.9
1955: 贷款计算 摘要:```cpp #include using namespace std; int main() { int total,month,money; float rate; …… 题解列表 2023年02月01日 0 点赞 0 评论 532 浏览 评分:9.3
最大值和最小值的差 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int a[10001];int main(){ int n,i,max,min; scanf("%d",&n); …… 题解列表 2023年02月01日 0 点赞 0 评论 984 浏览 评分:9.9
1241: 盐水的故事 摘要:```cpp #include using namespace std; int main() { int VUL,D,time=0,count=1; cin>>VUL>>…… 题解列表 2023年02月01日 0 点赞 0 评论 399 浏览 评分:9.9
1242: 矩阵转置 摘要:```cpp #include using namespace std; int a[1001][1001]; int main() { int n; cin>>n; …… 题解列表 2023年02月01日 0 点赞 0 评论 317 浏览 评分:9.9
巧妙运用'\0' 摘要:```c #include #include #include int main() { int n,flag=0; char a[100], b[100]; gets_s(a)…… 题解列表 2023年02月01日 0 点赞 0 评论 605 浏览 评分:9.9