倒杨辉三角形 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstring> using namespace std; int a[10][10]; int main…… 题解列表 2018年05月13日 0 点赞 0 评论 959 浏览 评分:9.6
不容易系列 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { int N; cin>>N; int n; …… 题解列表 2018年05月13日 0 点赞 0 评论 728 浏览 评分:0.0
程序员美工梦 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; void f1_print(int n) { for(int i=1;i<=n;…… 题解列表 2018年05月13日 0 点赞 0 评论 847 浏览 评分:0.0
上车人数 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; const int M=1000+5; struct num{ int b1,b…… 题解列表 2018年05月13日 0 点赞 0 评论 587 浏览 评分:2.0
三进制小数 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstring> #include<cmath> using namespace std; int mai…… 题解列表 2018年05月13日 0 点赞 0 评论 772 浏览 评分:9.9
三角形 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; const int n_max=100+5; int a[n_max][n_max]…… 题解列表 2018年05月13日 1 点赞 0 评论 794 浏览 评分:5.0
数列 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; const int M=10000+5; int a[M]; int main()…… 题解列表 2018年05月12日 0 点赞 0 评论 917 浏览 评分:0.0
蓝桥杯2015年第六届真题-机器人塔 (C++代码) 摘要:解题思路:位向量法注意事项:时间超限,显然这里的数据测试不是很严格,数据直接通过了参考代码:#include<iostream> #include<cstdio> #include<algorit…… 题解列表 2018年05月12日 2 点赞 0 评论 1214 浏览 评分:2.0
文科生的悲哀 (C++代码) 摘要:解题思路:n=1,ans=1;n=2,ans=1;n=3,ans=2;n=4,ans=5……ans 和 n 的关系满足n(1,2,……,N)->ans(1,1,3,5,8,13,……)//显然是斐波那…… 题解列表 2018年05月12日 1 点赞 0 评论 555 浏览 评分:0.0
奖学金 (C++代码) 摘要:解题思路:注意事项:不能多组输入参考代码:#include<cstdio> #include<iostream> #include<algorithm> using namespace std;…… 题解列表 2018年05月11日 0 点赞 0 评论 655 浏览 评分:0.0