数日子 (C++代码) 摘要:解题思路:注意事项:参考代码:这样就能通过,233333#include<iostream>using namespace std;int main(){ cout << 200 << endl; r…… 题解列表 2018年08月03日 0 点赞 0 评论 779 浏览 评分:2.0
蓝桥杯2014年第五届真题-重复模式 (C++代码) 摘要:解题思路:参考代码:#include<bits/stdc++.h> using namespace std; int main() { string str; cin >> str; …… 题解列表 2018年08月03日 0 点赞 0 评论 1766 浏览 评分:9.9
成绩排序 (C++代码) 摘要:#include<iostream> #include<algorithm> #include<cstring> using namespace std; struct stu { ch…… 题解列表 2018年08月03日 0 点赞 2 评论 1251 浏览 评分:8.0
蓝桥杯2014年第五届真题-拼接平方数 (C++代码) 摘要:#include"bits/stdc++.h" using namespace std; int f(int n) { int i = 1; while (n != 0) { …… 题解列表 2018年08月02日 0 点赞 0 评论 751 浏览 评分:0.0
蛇行矩阵 (C++代码) 摘要:每一行的规律很好看出来每行的第n个数为前n-1个数之和,很容易求出该数字为(n*n+n)/2;继续分析第m行的第n个数(n*n+n)/2+1-m;代码如下#include<iostream>using…… 题解列表 2018年08月02日 0 点赞 0 评论 806 浏览 评分:0.0
momoc:题解1513:蓝桥杯算法提高VIP-大数加法 (C语言代码)附题解 摘要:解题思路:1.用字符串保持输入的数 2.对输入的字符串进行逆序并转换成数组保持到整数数组 3.对数组相加对相加后的数进行取模,并把进位的数保…… 题解列表 2018年08月02日 6 点赞 0 评论 1559 浏览 评分:0.0
The 3n + 1 problem (C++代码) 摘要:数字本身也正在运行次数类,所以最后的max要加1每次循环结束记得要k归0,最大值也要归零#include<iostream>using namespace std;int main() { long …… 题解列表 2018年08月02日 0 点赞 0 评论 479 浏览 评分:0.0
蓝桥杯基础练习VIP-高精度加法 (C++代码) 摘要:参考代码:#include<bits/stdc++.h> using namespace std; typedef long long LL; const LL BASE = 100000000…… 题解列表 2018年08月02日 0 点赞 0 评论 835 浏览 评分:0.0
The 3n + 1 problem (C++代码) 摘要:解题思路:求最大循环长度注意事项:参考代码:#include <iostream>#include <cstdio>using namespace std;int main(){int m,n;whi…… 题解列表 2018年08月02日 0 点赞 0 评论 466 浏览 评分:0.0
蓝桥杯算法提高VIP-高精度乘法 (C++代码)(压位 17ms) 摘要:解题思路: 压到极限的千万进制,也就是 7 位存一次。 想起来我以前写的朴素乘法,惨不忍睹。 &nbs 题解列表 2018年08月02日 1 点赞 0 评论 1155 浏览 评分:6.0