蓝桥杯2022年第十三届省赛真题-最长不下降子序列 摘要:```c #include #include #include #define mem(a,b) memset(a,b,sizeof a) #define cinios (ios::sync…… 题解列表 2023年04月05日 0 点赞 0 评论 1413 浏览 评分:6.7
更小的数() 摘要:解题思路:枚举起点终点,如果起点大于终点,交换次数加一,如果起点小于终点,无法交换,如果起点等于终点,起点后移终点前移再次比较,直到第一个不等的点出现或起点大于终点跳出 ```cpp #inclu…… 题解列表 2023年04月12日 0 点赞 1 评论 575 浏览 评分:6.7
3034: 自然数的拆分 摘要:```cpp #include using namespace std; int a[1001]={1},f,b[1001],k,n; void out(int t){//输出函数 …… 题解列表 2023年04月15日 0 点赞 0 评论 654 浏览 评分:6.7
超级玛丽游戏 摘要:解题思路:复制粘贴注意事项:有一些输出的符号太多看起来像是另一行,建议大家全部复制到编译软件里再一句一句复制。参考代码:#include<stdio.h>main(){printf(" …… 题解列表 2023年04月25日 0 点赞 0 评论 507 浏览 评分:6.7
3151: 蓝桥杯2023年第十四届省赛真题-飞机降落 摘要:解题思路:利用全排列暴力测出全部的飞机排列情况,在试一试每个排列情况下是否可行参考代码:#include<bits/stdc++.h> using namespace std; struct ai…… 题解列表 2023年07月27日 0 点赞 1 评论 909 浏览 评分:6.7
琴海——1045自定义函数之整数处理——超详细注释 摘要:解题思路:注意十个数中,第一个数是最大值以及最后一个数是最小值的情况。注意事项:注释很详细,看看注释参考代码:#include <stdio.h> #include <string.h> int …… 题解列表 2023年09月06日 0 点赞 1 评论 328 浏览 评分:6.7
编写题解 1060: 二级C语言-同因查找 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main(int i){for(i=10;i<=1000;i++)if(i%2==0&&i%3==0&&i%7==0)pri…… 题解列表 2023年12月15日 0 点赞 0 评论 390 浏览 评分:6.7
蓝桥杯2024年第十五届省赛真题-R 格式 摘要:[点我查看详解](https://blog.csdn.net/m0_65641514/article/details/137726871?spm=1001.2014.3001.5502) ```…… 题解列表 2024年04月14日 0 点赞 0 评论 1890 浏览 评分:6.7
蓝桥杯2024年第十五届省赛真题-R 格式 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int a1[10004];int b[10004];int a[10004];in…… 题解列表 2024年04月15日 0 点赞 0 评论 1312 浏览 评分:6.7
新手无敌思路,看不懂kan我 摘要:解题思路:自己一看就懂注意事项:参考代码:#include <stdio.h>int main() { int a,b,c,x,y,z; scanf("%d %d %d",&a,&b,&c); if(…… 题解列表 2024年11月07日 5 点赞 5 评论 1184 浏览 评分:6.7