发工资咯 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int a[6]={100,50,10,5,2,1}; int main() { …… 题解列表 2018年05月16日 0 点赞 0 评论 580 浏览 评分:0.0
去掉空格 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<string> using namespace std; int main() { string st…… 题解列表 2018年05月16日 0 点赞 0 评论 861 浏览 评分:0.0
去掉双斜杠注释 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <iostream> #include<cstring> #include<cstdio> #include<string> using nam…… 题解列表 2018年05月16日 0 点赞 0 评论 1002 浏览 评分:0.0
半数集问题 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstring> using namespace std; int a[1005]; int f(int …… 题解列表 2018年05月16日 0 点赞 0 评论 1263 浏览 评分:9.9
十->二进制转换 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int a[20]={0}; int main() { int n; wh…… 题解列表 2018年05月16日 0 点赞 0 评论 950 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.8 (C++代码) 摘要:解题思路: 不用分类讨论直接暴力求值的方法.注意事项: 我们观察到小的数据范围是对大的数据范围没有影响的. 于是我们考虑每次处理一段,然后吧这段删了. 至于如果删过了,那就br…… 题解列表 2018年05月15日 1 点赞 3 评论 1625 浏览 评分:9.6
内码对称 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstring> using namespace std; int a[32]; int main() …… 题解列表 2018年05月14日 0 点赞 0 评论 1158 浏览 评分:8.0
蓝桥杯算法提高VIP-实数相加 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstring> #include<cstdio> using namespace std; const …… 题解列表 2018年05月13日 0 点赞 0 评论 753 浏览 评分:0.0
假币问题 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { int n; while(cin>>n) { …… 题解列表 2018年05月13日 0 点赞 0 评论 1074 浏览 评分:8.0
C语言程序设计教程(第三版)课后习题7.2 (C++代码) 摘要:解题思路:标准“选择排序”算法题目什么是选择排序?即从一组数开头(或末尾)找一个数,与它随后(或之前)的数比较大小,并按照提议从小到大(或从大到小)的顺序排列(交换变量的值)然后再从前(或从后)找到第…… 题解列表 2018年05月13日 0 点赞 0 评论 860 浏览 评分:0.0