蓝桥杯基础练习VIP-Sine之舞-题解(C++代码) 共同学习,共同进步。加油!ALG! 摘要:yu #include #include using namespace std; int n; string Sn;//打印Sn void DFS(int counts); …… 题解列表 2020年03月02日 0 点赞 0 评论 640 浏览 评分:7.3
蓝桥杯算法提高VIP-递归倒置字符数组-题解(C语言代码) 我也觉得很帅啊! 摘要:```c #include #include char str[100]; int len; void deal(char *a,int n) { if(n>=len/2) ret…… 题解列表 2020年03月03日 0 点赞 1 评论 411 浏览 评分:7.3
[编程入门]自定义函数之数字分离-题解(C语言代码) 摘要: #include #include void fl() { int i; int number = 0; scanf("%d", &number); for ( …… 题解列表 2020年03月03日 0 点赞 1 评论 1004 浏览 评分:7.3
JakeLin-1559题-模拟解二元一次方程组全过程(C++代码)-(虽然Duck不必) 摘要:```cpp #include #include #include using namespace std; long long getgcd(int a,int b){ //a,b求最大…… 题解列表 2020年03月03日 0 点赞 0 评论 1075 浏览 评分:7.3
【优质】函数封装,简洁实现 string应用! 2074题-[STL训练]A+B-题解(C++代码) 摘要:```cpp #include #include #include using namespace std; int pure(string a) { string::iterator…… 题解列表 2020年03月04日 0 点赞 0 评论 1113 浏览 评分:7.3
蓝桥杯 摆动序列 DFS - 摘要:# [1630] 摆动序列 DFS ## 完整代码 (AC) ```cpp #include const int maxn = 22; int K; bool vis[maxn]…… 题解列表 2020年03月06日 0 点赞 0 评论 1158 浏览 评分:7.3
去掉空格-题解(C++代码) 快来看我!!!!!!! 摘要: #include #include using namespace std; int main() { string word; while (getline(cin, …… 题解列表 2020年03月07日 0 点赞 0 评论 821 浏览 评分:7.3
[编程入门]迭代法求平方根-题解(C语言代码) 摘要: ```c #include"stdio.h" #include"math.h" //绝对值函数fabs()的头文件 int main() …… 题解列表 2020年03月10日 0 点赞 0 评论 2067 浏览 评分:7.3
二级C语言-阶乘数列-题解(C语言代码) 摘要: ```c #include int main() { int n = 30; double jx = 0,jx1 = 1; for (int i = 1; i …… 题解列表 2020年03月10日 0 点赞 0 评论 1014 浏览 评分:7.3
[编程入门]选择排序-题解(C语言代码) 摘要: ```c #include int main() { int t,j; int a[10] = { 0 }; int b[10] = { 0 }; for (in…… 题解列表 2020年03月10日 0 点赞 0 评论 986 浏览 评分:7.3