优质题解 求1+2+3+...+n的值 (C++代码)(高精度加,乘,除) 摘要:解题思路: ( 后来我才发现 long long 就可以过了QAQ ,数还不够大呀,当然更大也能过 ) 我太笨啦,用数列和公式算 Sn = (1 + n) * n / 2…… 题解列表 2018年06月12日 4 点赞 2 评论 2331 浏览 评分:9.9
优质题解 蓝桥杯2013年第四届真题-错误票据 摘要:解题思路: 这题的行号我没搞懂有什么用,因为票号连续的,很容易就能用散列表找出来,我们的解题思路: &nbs 题解列表 2018年06月12日 14 点赞 11 评论 4040 浏览 评分:9.3
小九九 (C++代码) 摘要:#include"bits/stdc++.h" using namespace std; int main() { for(int i=1;i<=9;i++) { for(int j…… 题解列表 2018年06月11日 1 点赞 0 评论 1692 浏览 评分:7.0
蓝桥杯算法提高- c++_ch02_02 (C++代码) 摘要:#include"bits/stdc++.h" using namespace std; int main() { int a,b; char c; cin>>a>>b>>c; …… 题解列表 2018年06月11日 1 点赞 0 评论 1676 浏览 评分:0.0
蓝桥杯算法提高- c++_ch02_03 (C++代码) 摘要:解题思路:找出所有能出现的结果即可 #include"bits/stdc++.h" using namespace std; int main() { int a,b; cin>>a>…… 题解列表 2018年06月11日 1 点赞 0 评论 1414 浏览 评分:8.0
求输入数据绝对值 (C++代码) 摘要:注意事项:注意输入和输出类型即可 #include"bits/stdc++.h" using namespace std; int main() { float n; while(ci…… 题解列表 2018年06月11日 1 点赞 0 评论 1459 浏览 评分:9.9
蓝桥杯基础练习VIP-分解质因数 (C++代码) 摘要:#include"bits/stdc++.h" using namespace std; int is(int x) { if(x==1) return 0; for(int i=2…… 题解列表 2018年06月11日 3 点赞 0 评论 1813 浏览 评分:0.0
蓝桥杯基础练习VIP-字符串对比 (C++代码) 摘要:解题思路:首先判断字符串的长度,如果不等则直接输出1,如果相等则继续判断,如果两个字符串完全相等, 则输出2,不等则继续判断,将大写字母转换成小写字母后两个字符串相等,则输出3,如果上述条件都不满足…… 题解列表 2018年06月11日 2 点赞 0 评论 1074 浏览 评分:0.0
蓝桥杯算法提高VIP-数组输出 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cmath> #include<algorithm> using namespace std; struc…… 题解列表 2018年06月11日 0 点赞 0 评论 2130 浏览 评分:0.0
蓝桥杯算法提高VIP-字符串比较 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<string> using namespace std; int main() { string s…… 题解列表 2018年06月11日 0 点赞 0 评论 1050 浏览 评分:0.0