蓝桥杯算法提高VIP-交换Easy (Python代码) 摘要:这道题首先我们要注意输入的内容 第一行为输入的两个数字 第一个N为第二行要输入数字的个数, 第二个M为后面几行要输入的行数。 首先采用a,b=N,M 我们不需要限制a的数字,可以直接通过列表…… 题解列表 2020年03月23日 1 点赞 2 评论 1385 浏览 评分:6.5
数据结构-快速排序-题解(C++代码) 摘要:```cpp #include using namespace std; //快速排序p300 int partition(int a[],int low,int high){ //快排…… 题解列表 2020年03月23日 0 点赞 0 评论 969 浏览 评分:0.0
Minesweeper -题解(C语言代码) 摘要: 1、扫雷游戏,符号'.'表示安全,符号'*'表示地雷,输入0…… 题解列表 2020年03月23日 0 点赞 0 评论 1338 浏览 评分:0.0
优质题解 狂猎退去 (另一种角度)(C++代码) 摘要:# 狂猎退去 ## 题目链接 [https://www.dotcpp.com/oj/problem2105.html](https://www.dotcpp.com/oj/problem2…… 题解列表 2020年03月23日 0 点赞 0 评论 735 浏览 评分:9.9
程序员的表白-题解(C语言代码) 摘要:#include int main(){ int a,i,j; while(scanf("%d",&a) != EOF){ for(j = 0;j < a+1;j++){ …… 题解列表 2020年03月23日 0 点赞 0 评论 699 浏览 评分:0.0
蓝桥杯算法提高VIP-摆花-题解(C++代码) 摘要: #include #include #include using namespace std; i…… 题解列表 2020年03月23日 0 点赞 0 评论 764 浏览 评分:0.0
狂猎来袭 (另一种解法)(C++代码) 摘要:# 狂猎来袭题解 ## 题目链接 [https://www.dotcpp.com/oj/problem2103.html](https://www.dotcpp.com/oj/proble…… 题解列表 2020年03月23日 0 点赞 0 评论 956 浏览 评分:9.0
蓝桥杯2013年第四届真题-核桃的数量-题解(C语言代码) 摘要:#include int main(){ int a,b,c,i,min; scanf("%d %d %d",&a,&b,&c); if(a > b && c > b){ …… 题解列表 2020年03月23日 0 点赞 0 评论 462 浏览 评分:0.0
Tom数-题解(C语言代码) 摘要:#include #include int main(){ char num[65536]; int i,a[65536] = {0},plot_num,temp; while(s…… 题解列表 2020年03月23日 0 点赞 0 评论 932 浏览 评分:0.0
[编程入门]自定义函数之整数处理-题解(C语言代码) 摘要:```c #define _CRT_SECURE_NO_WARNINGS #include #include #include void test03(int arr[10]); voi…… 题解列表 2020年03月23日 0 点赞 0 评论 715 浏览 评分:0.0