蓝桥杯算法提高VIP-多项式输出 (C++代码)愿天堂没有模拟 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int a[101]; int main() { int n; int l…… 题解列表 2019年04月02日 0 点赞 0 评论 939 浏览 评分:0.0
GC的苦恼 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstdio> #include<string> #include<cmath> #include<alg…… 题解列表 2019年04月02日 0 点赞 0 评论 1189 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.2 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstdio> #include<string> #include<cmath> using namesp…… 题解列表 2019年04月02日 0 点赞 2 评论 386 浏览 评分:0.0
陈教主的三角形 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstdio> #include<cmath> using namespace std; int mai…… 题解列表 2019年04月02日 0 点赞 0 评论 1101 浏览 评分:0.0
优质题解 蓝桥杯2014年第五届真题-拼接平方数 (C++代码)理解为主! 摘要:解题思路: 题目中蕴含了一个隐藏的条件,那就是拼接的数是有两段数字构成的,那么就可以通过拆分的方式变成两端不同的字串进行操作。 判断思路如下:去除无法拆分成两端数字的数(十位数一下,个位数…… 题解列表 2019年04月02日 4 点赞 0 评论 1853 浏览 评分:9.9
蓝桥杯算法提高VIP-去注释 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstdio> using namespace std; int main() { char c; …… 题解列表 2019年04月02日 0 点赞 0 评论 935 浏览 评分:0.0
防御导弹 (C语言代码) 摘要:解题思路:每一个数都可以有选与不选两种可能,一直递归到最后没有数可选的时候的长度就是最大长度,红色的数字就是最大长度的选择过程(不太会电脑画图,所以图没有画全)注意事项:1.opt(0)下面的 选与…… 题解列表 2019年04月02日 1 点赞 2 评论 1509 浏览 评分:7.3
平方和与立方和 (C++代码)水 摘要:解题思路:又水了一题,我好像错过了愚人节彩蛋参考代码:#include<bits/stdc++.h> #define hh ios::sync_with_stdio(false),cin.tie(0…… 题解列表 2019年04月02日 0 点赞 0 评论 987 浏览 评分:6.0
蓝桥杯算法提高VIP-卡勒沃夫之弱水路三千(提高型) (C++代码)根据前面大佬题接进行改编 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<map> using namespace std; map<string,int>l; int main(…… 题解列表 2019年04月02日 0 点赞 3 评论 1169 浏览 评分:9.9
两种方法解(C语言代码) 摘要:解题思路:最小公倍数和最大公约数用到了算法,这个比较简单,需要记住注意事项:记住就好,别弄错变量参考代码:辗转相除法 #include <stdio.h> int main (void) …… 题解列表 2019年04月01日 5 点赞 8 评论 4216 浏览 评分:9.5