蓝桥杯算法训练VIP-和为T (C++代码) 摘要:解题思路:格式有点问题,但照样过了!嘻嘻嘻!注意事项:参考代码:#include<stdio.h> #include<string.h> #include<stdlib.h> …… 题解列表 2018年03月15日 1 点赞 0 评论 2497 浏览 评分:8.0
蓝桥杯算法训练VIP-传球游戏 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> #define maxn 100 using namespace std; int F[maxn][maxn]; …… 题解列表 2018年03月15日 6 点赞 0 评论 2207 浏览 评分:9.7
蓝桥杯算法训练VIP-Hanoi问题 (C++代码) 摘要:解题思路:注意事项:参考代码:#include "stdio.h" int count=0; void fun(int n,int m,char a,char b,char c) {…… 题解列表 2018年03月15日 1 点赞 0 评论 2206 浏览 评分:0.0
整除的尾数 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b,i; for(;;) { …… 题解列表 2018年03月15日 0 点赞 0 评论 1390 浏览 评分:0.0
简单的a+b (C++代码) 摘要:解题思路:注意事项:参考代码:#include "stdafx.h"int main(){ int a, b,c; scanf_s("%d%d",&a,&b); c = a + b; printf("…… 题解列表 2018年03月15日 0 点赞 0 评论 1243 浏览 评分:0.0
统计字符 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<algorithm> #include<stdio.h> #include<map> #i…… 题解列表 2018年03月14日 1 点赞 0 评论 1683 浏览 评分:9.9
P1095 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstdio> int n,a[100000]; double f[10000][2];//不要忘记doub…… 题解列表 2018年03月14日 0 点赞 0 评论 1525 浏览 评分:0.0
P1094 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>//万能库 using namespace std; int h[10000],l[10000],f[5000][500…… 题解列表 2018年03月14日 0 点赞 0 评论 1349 浏览 评分:0.0
蓝桥杯算法训练VIP-入学考试 (C++代码) 摘要:解题思路:01背包,注意事项:参考代码:#include<iostream> #include<string.h> #include<algorithm> using namespace std…… 题解列表 2018年03月14日 0 点赞 0 评论 1406 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.2 (C++代码) 摘要:解题思路:比较中规中矩的解法,但我纳闷的是明明可以正常运行,但是提交就会显示编译错误。这也是我为什么要写这个程序。注意事项:C++中会有两个库文件<math.h>和<cmath>,形式相同的功能。在提…… 题解列表 2018年03月14日 3 点赞 0 评论 1975 浏览 评分:9.0