半数集问题 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstring> using namespace std; int a[1005]; int f(int …… 题解列表 2018年05月16日 0 点赞 0 评论 2040 浏览 评分:9.9
十->二进制转换 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int a[20]={0}; int main() { int n; wh…… 题解列表 2018年05月16日 0 点赞 0 评论 1706 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.8 (C++代码) 摘要:解题思路: 不用分类讨论直接暴力求值的方法.注意事项: 我们观察到小的数据范围是对大的数据范围没有影响的. 于是我们考虑每次处理一段,然后吧这段删了. 至于如果删过了,那就br…… 题解列表 2018年05月15日 1 点赞 3 评论 1941 浏览 评分:9.6
内码对称 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstring> using namespace std; int a[32]; int main() …… 题解列表 2018年05月14日 0 点赞 0 评论 2249 浏览 评分:8.0
蓝桥杯算法提高VIP-实数相加 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstring> #include<cstdio> using namespace std; const …… 题解列表 2018年05月13日 0 点赞 0 评论 1239 浏览 评分:0.0
假币问题 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { int n; while(cin>>n) { …… 题解列表 2018年05月13日 0 点赞 0 评论 1775 浏览 评分:8.0
C语言程序设计教程(第三版)课后习题7.2 (C++代码) 摘要:解题思路:标准“选择排序”算法题目什么是选择排序?即从一组数开头(或末尾)找一个数,与它随后(或之前)的数比较大小,并按照提议从小到大(或从大到小)的顺序排列(交换变量的值)然后再从前(或从后)找到第…… 题解列表 2018年05月13日 0 点赞 0 评论 1309 浏览 评分:0.0
倒杨辉三角形 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstring> using namespace std; int a[10][10]; int main…… 题解列表 2018年05月13日 0 点赞 0 评论 1394 浏览 评分:9.6
不容易系列 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { int N; cin>>N; int n; …… 题解列表 2018年05月13日 0 点赞 0 评论 1392 浏览 评分:0.0
程序员美工梦 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; void f1_print(int n) { for(int i=1;i<=n;…… 题解列表 2018年05月13日 0 点赞 0 评论 1744 浏览 评分:0.0