蓝桥杯历届试题-兰顿蚂蚁 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#define MAX 100int a[MAX][MAX];int main(){ int m,n,x,y,k; int …… 题解列表 2018年03月27日 0 点赞 0 评论 1129 浏览 评分:0.0
不容易系列2 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(void){ int i, n; long long num[21]; while (scanf("%d", &n)…… 题解列表 2018年03月27日 0 点赞 0 评论 931 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题1.5 (C语言代码) 摘要:解题思路:答了两次 第一次错了 第二次对了 第一次我打了20个*号,第二次我直接把题目中所有的*号复制粘贴过去了注意事项:*数不清时,复制粘贴快一点参考代码:#include<stdio.h>int …… 题解列表 2018年03月27日 0 点赞 0 评论 882 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.4 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){int a,b,c;printf("请输入三个整数");scanf("%d,%d,%d",&a,&b,&c);in…… 题解列表 2018年03月27日 1 点赞 0 评论 808 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.1 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c; scanf("%d%d", &a, &b); for (c=a;;c++…… 题解列表 2018年03月27日 0 点赞 0 评论 806 浏览 评分:0.0
排列 (C语言代码) 摘要:解题思路:注意事项:不用排序参考代码:#include <stdio.h>int main(void){ int i, n; scanf("%d", &n); for (i = 1;i <= n;i+…… 题解列表 2018年03月27日 0 点赞 0 评论 1712 浏览 评分:0.0
超时的DFS,上面那位大佬厉害呀 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<algorithm> #include<cstring> #include<cmath> #include…… 题解列表 2018年03月30日 3 点赞 0 评论 2096 浏览 评分:0.0
【数组的距离】 (C语言代码) 摘要:#include<stdio.h>#include<math.h>int main(){ int m,n; int a[1000],t,min=999999; scanf("%d %…… 题解列表 2018年03月27日 0 点赞 0 评论 1453 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题9.2 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#define Mod(x,y) x=x%yint main(){ int x,y; scanf("%d %d",&x,&y…… 题解列表 2018年03月27日 0 点赞 0 评论 940 浏览 评分:0.0
蓝桥杯算法提高VIP-和最大子序列 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; const int M=100001; int map[M]; int Max; …… 题解列表 2018年03月27日 0 点赞 0 评论 1119 浏览 评分:0.0