小O的乘积 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<algorithm>using namespace std;const int M=100000;int a[M];…… 题解列表 2017年11月03日 0 点赞 0 评论 748 浏览 评分:0.0
【出圈】 (C++代码)简单循环 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; long Josephus(long,long,long); int main()…… 题解列表 2017年11月03日 0 点赞 0 评论 948 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题10.1 (C++代码) 摘要:解题思路:很简单的选择排序注意事项:其实方法还有很多参考代码:#include <iostream>#include <stdio.h>using namespace std;int main(){ …… 题解列表 2017年11月03日 1 点赞 0 评论 770 浏览 评分:0.0
【偶数求和】 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { int n,m; int i,j,k,…… 题解列表 2017年11月03日 0 点赞 0 评论 1037 浏览 评分:0.0
【魔板】 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <cstdio>#include <cstring>const int maxn = 100000 + 10;const int hashsize = …… 题解列表 2017年11月02日 2 点赞 0 评论 1569 浏览 评分:2.0
老王赛马 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<algorithm> using namespace std; int main() { int…… 题解列表 2017年11月01日 1 点赞 0 评论 1248 浏览 评分:9.0
幸运数 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;const int M=500000;int a[M],count;void Lucky_nu…… 题解列表 2017年11月01日 1 点赞 0 评论 3494 浏览 评分:7.3
小O的乘积 (C++代码) 摘要:解题思路:只要注意几个情况就能AC了注意事项:参考代码:#include<cstdio>#include <algorithm>using namespace std;int main(){ i…… 题解列表 2017年10月31日 0 点赞 0 评论 1015 浏览 评分:0.0
分解质因数 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b; int s[30]; while(cin>>a>>b…… 题解列表 2017年10月27日 0 点赞 0 评论 1932 浏览 评分:6.2
敲七 (C++代码) 摘要:#include<iostream> #include<vector> using namespace std; bool pandun(int m)//判断m里是否有7 { whil…… 题解列表 2017年10月24日 0 点赞 0 评论 1361 浏览 评分:8.7