不容易系列2 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(void){ int i, n; long long num[21]; while (scanf("%d", &n)…… 题解列表 2018年03月27日 0 点赞 0 评论 757 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题1.5 (C语言代码) 摘要:解题思路:答了两次 第一次错了 第二次对了 第一次我打了20个*号,第二次我直接把题目中所有的*号复制粘贴过去了注意事项:*数不清时,复制粘贴快一点参考代码:#include<stdio.h>int …… 题解列表 2018年03月27日 0 点赞 0 评论 703 浏览 评分: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 评论 541 浏览 评分: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 评论 602 浏览 评分: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 评论 1190 浏览 评分:0.0
超时的DFS,上面那位大佬厉害呀 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<algorithm> #include<cstring> #include<cmath> #include…… 题解列表 2018年03月30日 3 点赞 0 评论 1455 浏览 评分: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 评论 961 浏览 评分: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 评论 583 浏览 评分:0.0
蓝桥杯算法提高VIP-和最大子序列 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; const int M=100001; int map[M]; int Max; …… 题解列表 2018年03月27日 0 点赞 0 评论 633 浏览 评分:0.0
蓝桥杯算法提高VIP-最小乘积(提高型) (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<algorithm> using namespace std; const int M=10001; in…… 题解列表 2018年03月27日 0 点赞 0 评论 986 浏览 评分:0.0